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",
prefix: "Prefix", # 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
access_control_translation: {
owner: "Destination", # required, accepts Destination
},
encryption_configuration: {
replica_kms_key_id: "ReplicaKmsKeyID",
},
},
},
],
}
Container for replication rules. You can add as many as 1,000 rules. Total replication configuration size can be up to 2 MB.
Instance Attribute Summary collapse
-
#role ⇒ String
Amazon Resource Name (ARN) of an IAM role for Amazon S3 to assume when replicating the objects.
-
#rules ⇒ Array<Types::ReplicationRule>
Container for information about a particular replication rule.
Instance Attribute Details
#role ⇒ String
Amazon Resource Name (ARN) of an IAM role for Amazon S3 to assume when replicating the objects.
7331 7332 7333 7334 7335 |
# File 'lib/aws-sdk-s3/types.rb', line 7331 class ReplicationConfiguration < Struct.new( :role, :rules) include Aws::Structure end |
#rules ⇒ Array<Types::ReplicationRule>
Container for information about a particular replication rule. Replication configuration must have at least one rule and can contain up to 1,000 rules.
7331 7332 7333 7334 7335 |
# File 'lib/aws-sdk-s3/types.rb', line 7331 class ReplicationConfiguration < Struct.new( :role, :rules) include Aws::Structure end |