Class: Aws::FSx::Types::DescribeFileSystemsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DescribeFileSystemsResponse
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The response object for DescribeFileSystems
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_systems ⇒ Array<Types::FileSystem>
An array of file system descriptions.
-
#next_token ⇒ String
Present if there are more file systems than returned in the response (String).
Instance Attribute Details
#file_systems ⇒ Array<Types::FileSystem>
An array of file system descriptions.
5128 5129 5130 5131 5132 5133 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 5128 class DescribeFileSystemsResponse < Struct.new( :file_systems, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Present if there are more file systems than returned in the response
(String). You can use the NextToken
value in the later request to
fetch the descriptions.
5128 5129 5130 5131 5132 5133 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 5128 class DescribeFileSystemsResponse < Struct.new( :file_systems, :next_token) SENSITIVE = [] include Aws::Structure end |