Class: Aws::S3::Types::PutBucketReplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::PutBucketReplicationRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass PutBucketReplicationRequest data as a hash:
{
bucket: "BucketName", # required
content_md5: "ContentMD5",
replication_configuration: { # required
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
},
},
existing_object_replication: {
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, DEEP_ARCHIVE
access_control_translation: {
owner: "Destination", # required, accepts Destination
},
encryption_configuration: {
replica_kms_key_id: "ReplicaKmsKeyID",
},
replication_time: {
status: "Enabled", # required, accepts Enabled, Disabled
time: { # required
minutes: 1,
},
},
metrics: {
status: "Enabled", # required, accepts Enabled, Disabled
event_threshold: { # required
minutes: 1,
},
},
},
delete_marker_replication: {
status: "Enabled", # accepts Enabled, Disabled
},
},
],
},
token: "ObjectLockToken",
}
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the bucket.
-
#content_md5 ⇒ String
The base64-encoded 128-bit MD5 digest of the data.
-
#replication_configuration ⇒ Types::ReplicationConfiguration
A container for replication rules.
- #token ⇒ String
Instance Attribute Details
#bucket ⇒ String
The name of the bucket
9233 9234 9235 9236 9237 9238 9239 |
# File 'lib/aws-sdk-s3/types.rb', line 9233 class PutBucketReplicationRequest < Struct.new( :bucket, :content_md5, :replication_configuration, :token) include Aws::Structure end |
#content_md5 ⇒ String
The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see [RFC 1864].
9233 9234 9235 9236 9237 9238 9239 |
# File 'lib/aws-sdk-s3/types.rb', line 9233 class PutBucketReplicationRequest < Struct.new( :bucket, :content_md5, :replication_configuration, :token) include Aws::Structure end |
#replication_configuration ⇒ Types::ReplicationConfiguration
A container for replication rules. You can add up to 1,000 rules. The maximum size of a replication configuration is 2 MB.
9233 9234 9235 9236 9237 9238 9239 |
# File 'lib/aws-sdk-s3/types.rb', line 9233 class PutBucketReplicationRequest < Struct.new( :bucket, :content_md5, :replication_configuration, :token) include Aws::Structure end |
#token ⇒ String
9233 9234 9235 9236 9237 9238 9239 |
# File 'lib/aws-sdk-s3/types.rb', line 9233 class PutBucketReplicationRequest < Struct.new( :bucket, :content_md5, :replication_configuration, :token) include Aws::Structure end |