Class: Aws::StorageGateway::Types::ListVolumesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListVolumesInput
- Includes:
- Aws::Structure
- Defined in:
- 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.
4827 4828 4829 4830 4831 4832 4833 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 4827 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.
4827 4828 4829 4830 4831 4832 4833 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 4827 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.
4827 4828 4829 4830 4831 4832 4833 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 4827 class ListVolumesInput < Struct.new( :gateway_arn, :marker, :limit) SENSITIVE = [] include Aws::Structure end |