Learn R Programming

paws.storage (version 0.1.12)

storagegateway_describe_cachedi_scsi_volumes: Returns a description of the gateway volumes specified in the request

Description

Returns a description of the gateway volumes specified in the request. This operation is only supported in the cached volume gateway types.

The list of gateway volumes in the request must be from one gateway. In the response, AWS Storage Gateway returns volume information sorted by volume Amazon Resource Name (ARN).

Usage

storagegateway_describe_cachedi_scsi_volumes(VolumeARNs)

Value

A list with the following syntax:

list(
  CachediSCSIVolumes = list(
    list(
      VolumeARN = "string",
      VolumeId = "string",
      VolumeType = "string",
      VolumeStatus = "string",
      VolumeAttachmentStatus = "string",
      VolumeSizeInBytes = 123,
      VolumeProgress = 123.0,
      SourceSnapshotId = "string",
      VolumeiSCSIAttributes = list(
        TargetARN = "string",
        NetworkInterfaceId = "string",
        NetworkInterfacePort = 123,
        LunNumber = 123,
        ChapEnabled = TRUE|FALSE
      ),
      CreatedDate = as.POSIXct(
        "2015-01-01"
      ),
      VolumeUsedInBytes = 123,
      KMSKey = "string",
      TargetName = "string"
    )
  )
)

Arguments

VolumeARNs

[required] An array of strings where each string represents the Amazon Resource Name (ARN) of a cached volume. All of the specified cached volumes must be from the same gateway. Use list_volumes to get volume ARNs for a gateway.

Request syntax

svc$describe_cachedi_scsi_volumes(
  VolumeARNs = list(
    "string"
  )
)

Examples

Run this code
if (FALSE) {
# Returns a description of the gateway cached iSCSI volumes specified in
# the request.
svc$describe_cachedi_scsi_volumes(
  VolumeARNs = list(
    "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
  )
)
}

Run the code above in your browser using DataLab