Class: Aws::StorageGateway::Types::ListVolumesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListVolumesOutput
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
A JSON object containing the following fields:
ListVolumesOutput$Marker
ListVolumesOutput$VolumeInfos
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway.
-
#marker ⇒ String
Use the marker in your next request to continue pagination of iSCSI volumes.
-
#volume_infos ⇒ Array<Types::VolumeInfo>
An array of VolumeInfo objects, where each object describes an iSCSI volume.
Instance Attribute Details
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
4903 4904 4905 4906 4907 4908 4909 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4903 class ListVolumesOutput < Struct.new( :gateway_arn, :marker, :volume_infos) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Use the marker in your next request to continue pagination of iSCSI volumes. If there are no more volumes to list, this field does not appear in the response body.
4903 4904 4905 4906 4907 4908 4909 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4903 class ListVolumesOutput < Struct.new( :gateway_arn, :marker, :volume_infos) SENSITIVE = [] include Aws::Structure end |
#volume_infos ⇒ Array<Types::VolumeInfo>
An array of VolumeInfo objects, where each object describes an iSCSI
volume. If no volumes are defined for the gateway, then
VolumeInfos
is an empty array "[]".
4903 4904 4905 4906 4907 4908 4909 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4903 class ListVolumesOutput < Struct.new( :gateway_arn, :marker, :volume_infos) SENSITIVE = [] include Aws::Structure end |