Class: Aws::EFS::Types::DescribeReplicationConfigurationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::DescribeReplicationConfigurationsRequest
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
You can retrieve the replication configuration for a specific file system by providing its file system ID.
-
#max_results ⇒ Integer
(Optional) To limit the number of objects returned in a response, you can specify the
MaxItems
parameter. -
#next_token ⇒ String
NextToken
is present if the response is paginated.
Instance Attribute Details
#file_system_id ⇒ String
You can retrieve the replication configuration for a specific file system by providing its file system ID. For cross-account,cross-region replication, an account can only describe the replication configuration for a file system in its own Region.
1073 1074 1075 1076 1077 1078 1079 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1073 class DescribeReplicationConfigurationsRequest < Struct.new( :file_system_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
(Optional) To limit the number of objects returned in a response,
you can specify the MaxItems
parameter. The default value is 100.
1073 1074 1075 1076 1077 1078 1079 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1073 class DescribeReplicationConfigurationsRequest < Struct.new( :file_system_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
NextToken
is present if the response is paginated. You can use
NextToken
in a subsequent request to fetch the next page of
output.
1073 1074 1075 1076 1077 1078 1079 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1073 class DescribeReplicationConfigurationsRequest < Struct.new( :file_system_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |