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.
4702 4703 4704 4705 4706 4707 4708 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4702 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.
4702 4703 4704 4705 4706 4707 4708 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4702 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.
4702 4703 4704 4705 4706 4707 4708 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4702 class ListVolumesInput < Struct.new( :gateway_arn, :marker, :limit) SENSITIVE = [] include Aws::Structure end |