Class: Aws::StorageGateway::Types::ListFileSystemAssociationsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListFileSystemAssociationsInput
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway.
-
#limit ⇒ Integer
The maximum number of file system associations to return in the response.
-
#marker ⇒ String
Opaque pagination token returned from a previous
ListFileSystemAssociations
operation.
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.
4321 4322 4323 4324 4325 4326 4327 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4321 class ListFileSystemAssociationsInput < Struct.new( :gateway_arn, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of file system associations to return in the
response. If present, Limit
must be an integer with a value
greater than zero. Optional.
4321 4322 4323 4324 4325 4326 4327 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4321 class ListFileSystemAssociationsInput < Struct.new( :gateway_arn, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Opaque pagination token returned from a previous
ListFileSystemAssociations
operation. If present, Marker
specifies where to continue the list from after a previous call to
ListFileSystemAssociations
. Optional.
4321 4322 4323 4324 4325 4326 4327 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4321 class ListFileSystemAssociationsInput < Struct.new( :gateway_arn, :limit, :marker) SENSITIVE = [] include Aws::Structure end |