Class: Aws::S3::Types::ReplicationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ReplicationConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass ReplicationConfiguration data as a hash:
{
role: "Role", # required
rules: [ # required
{
id: "ID",
priority: 1,
prefix: "Prefix",
filter: {
prefix: "Prefix",
tag: {
key: "ObjectKey", # required
value: "Value", # required
},
and: {
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
},
},
status: "Enabled", # required, accepts Enabled, Disabled
source_selection_criteria: {
sse_kms_encrypted_objects: {
status: "Enabled", # required, accepts Enabled, Disabled
},
},
destination: { # required
bucket: "BucketName", # required
account: "AccountId",
storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER
access_control_translation: {
owner: "Destination", # required, accepts Destination
},
encryption_configuration: {
replica_kms_key_id: "ReplicaKmsKeyID",
},
},
delete_marker_replication: {
status: "Enabled", # accepts Enabled, Disabled
},
},
],
}
A container for replication rules. You can add up to 1,000 rules. The maximum size of a replication configuration is 2 MB.
Instance Attribute Summary collapse
-
#role ⇒ String
The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that Amazon S3 can assume when replicating the 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 AWS Identity and Access Management (IAM) role that Amazon S3 can assume when replicating the objects.
8300 8301 8302 8303 8304 |
# File 'lib/aws-sdk-s3/types.rb', line 8300 class ReplicationConfiguration < Struct.new( :role, :rules) 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 a maximum of 1,000 rules.
8300 8301 8302 8303 8304 |
# File 'lib/aws-sdk-s3/types.rb', line 8300 class ReplicationConfiguration < Struct.new( :role, :rules) include Aws::Structure end |