Class: Aws::S3Control::Types::ReplicationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ReplicationConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
A container for one or more replication rules. A replication configuration must have at least one rule and you can add up to 100 rules. The maximum size of a replication configuration is 128 KB.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role ⇒ String
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that S3 on Outposts assumes when replicating objects.
-
#rules ⇒ Array<Types::ReplicationRule>
A container for one or more replication rules.
Instance Attribute Details
#role ⇒ String
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that S3 on Outposts assumes when replicating objects. For information about S3 replication on Outposts configuration, see
- Setting up replication][1
-
in the *Amazon S3 User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/outposts-replication-how-setup.html
6606 6607 6608 6609 6610 6611 |
# File 'lib/aws-sdk-s3control/types.rb', line 6606 class ReplicationConfiguration < Struct.new( :role, :rules) SENSITIVE = [] include Aws::Structure end |
#rules ⇒ Array<Types::ReplicationRule>
A container for one or more replication rules. A replication configuration must have at least one rule and can contain an array of 100 rules at the most.
6606 6607 6608 6609 6610 6611 |
# File 'lib/aws-sdk-s3control/types.rb', line 6606 class ReplicationConfiguration < Struct.new( :role, :rules) SENSITIVE = [] include Aws::Structure end |