Class: Aws::EFS::Types::DescribeFileSystemsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::DescribeFileSystemsResponse
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_systems ⇒ Array<Types::FileSystemDescription>
An array of file system descriptions.
-
#marker ⇒ String
Present if provided by caller in the request (String).
-
#next_marker ⇒ String
Present if there are more file systems than returned in the response (String).
Instance Attribute Details
#file_systems ⇒ Array<Types::FileSystemDescription>
An array of file system descriptions.
883 884 885 886 887 888 889 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 883 class DescribeFileSystemsResponse < Struct.new( :marker, :file_systems, :next_marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Present if provided by caller in the request (String).
883 884 885 886 887 888 889 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 883 class DescribeFileSystemsResponse < Struct.new( :marker, :file_systems, :next_marker) SENSITIVE = [] include Aws::Structure end |
#next_marker ⇒ String
Present if there are more file systems than returned in the response
(String). You can use the NextMarker
in the subsequent request to
fetch the descriptions.
883 884 885 886 887 888 889 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 883 class DescribeFileSystemsResponse < Struct.new( :marker, :file_systems, :next_marker) SENSITIVE = [] include Aws::Structure end |