Class: Aws::StorageGateway::Types::ListFileSharesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListFileSharesInput
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
ListFileShareInput
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway whose file shares you want to list.
-
#limit ⇒ Integer
The maximum number of file shares to return in the response.
-
#marker ⇒ String
Opaque pagination token returned from a previous ListFileShares operation.
Instance Attribute Details
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway whose file shares you want to list. If this field is not present, all file shares under your account are listed.
4737 4738 4739 4740 4741 4742 4743 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4737 class ListFileSharesInput < Struct.new( :gateway_arn, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of file shares to return in the response. The value must be an integer with a value greater than zero. Optional.
4737 4738 4739 4740 4741 4742 4743 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4737 class ListFileSharesInput < Struct.new( :gateway_arn, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Opaque pagination token returned from a previous ListFileShares
operation. If present, Marker
specifies where to continue the list
from after a previous call to ListFileShares. Optional.
4737 4738 4739 4740 4741 4742 4743 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4737 class ListFileSharesInput < Struct.new( :gateway_arn, :limit, :marker) SENSITIVE = [] include Aws::Structure end |