Class: Aws::StorageGateway::Types::ListVolumesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListVolumesInput
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
A JSON object that contains one or more of the following fields:
ListVolumesInput$Limit
ListVolumesInput$Marker
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway.
-
#limit ⇒ Integer
Specifies that the list of volumes returned be limited to the specified number of items.
-
#marker ⇒ String
A string that indicates the position at which to begin the returned list of volumes.
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.
5158 5159 5160 5161 5162 5163 5164 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 5158 class ListVolumesInput < Struct.new( :gateway_arn, :marker, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
Specifies that the list of volumes returned be limited to the specified number of items.
5158 5159 5160 5161 5162 5163 5164 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 5158 class ListVolumesInput < Struct.new( :gateway_arn, :marker, :limit) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
A string that indicates the position at which to begin the returned list of volumes. Obtain the marker from the response of a previous List iSCSI Volumes request.
5158 5159 5160 5161 5162 5163 5164 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 5158 class ListVolumesInput < Struct.new( :gateway_arn, :marker, :limit) SENSITIVE = [] include Aws::Structure end |