Class: Aws::FSx::Types::DescribeFileSystemsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DescribeFileSystemsRequest
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The request object for DescribeFileSystems
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_ids ⇒ Array<String>
IDs of the file systems whose descriptions you want to retrieve (String).
-
#max_results ⇒ Integer
Maximum number of file systems to return in the response (integer).
-
#next_token ⇒ String
Opaque pagination token returned from a previous
DescribeFileSystems
operation (String).
Instance Attribute Details
#file_system_ids ⇒ Array<String>
IDs of the file systems whose descriptions you want to retrieve (String).
4936 4937 4938 4939 4940 4941 4942 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4936 class DescribeFileSystemsRequest < Struct.new( :file_system_ids, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Maximum number of file systems to return in the response (integer).
This parameter value must be greater than 0. The number of items
that Amazon FSx returns is the minimum of the MaxResults
parameter
specified in the request and the service's internal maximum number
of items per page.
4936 4937 4938 4939 4940 4941 4942 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4936 class DescribeFileSystemsRequest < Struct.new( :file_system_ids, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Opaque pagination token returned from a previous
DescribeFileSystems
operation (String). If a token present, the
operation continues the list from where the returning call left off.
4936 4937 4938 4939 4940 4941 4942 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4936 class DescribeFileSystemsRequest < Struct.new( :file_system_ids, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |