paws.storage (version 0.1.0)

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.

Usage

storagegateway_describe_cachedi_scsi_volumes(VolumeARNs)

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 from the same gateway. Use ListVolumes to get volume ARNs for a gateway.

Request syntax

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

Details

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

Examples

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

Run the code above in your browser using DataCamp Workspace