Class: Aws::StorageGateway::Types::ListFileSharesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListFileSharesOutput
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
ListFileShareOutput
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_share_info_list ⇒ Array<Types::FileShareInfo>
An array of information about the S3 File Gateway's file shares.
-
#marker ⇒ String
If the request includes
Marker
, the response returns that value in this field. -
#next_marker ⇒ String
If a value is present, there are more file shares to return.
Instance Attribute Details
#file_share_info_list ⇒ Array<Types::FileShareInfo>
An array of information about the S3 File Gateway's file shares.
4471 4472 4473 4474 4475 4476 4477 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4471 class ListFileSharesOutput < Struct.new( :marker, :next_marker, :file_share_info_list) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
If the request includes Marker
, the response returns that value in
this field.
4471 4472 4473 4474 4475 4476 4477 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4471 class ListFileSharesOutput < Struct.new( :marker, :next_marker, :file_share_info_list) SENSITIVE = [] include Aws::Structure end |
#next_marker ⇒ String
If a value is present, there are more file shares to return. In a
subsequent request, use NextMarker
as the value for Marker
to
retrieve the next set of file shares.
4471 4472 4473 4474 4475 4476 4477 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4471 class ListFileSharesOutput < Struct.new( :marker, :next_marker, :file_share_info_list) SENSITIVE = [] include Aws::Structure end |