// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`PutBucketReplication`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`bucket(impl Into<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::bucket) / [`set_bucket(Option<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::set_bucket): <p>The name of the bucket</p>
/// - [`content_md5(impl Into<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::content_md5) / [`set_content_md5(Option<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::set_content_md5): <p>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 <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC 1864</a>.</p> <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
/// - [`checksum_algorithm(ChecksumAlgorithm)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::checksum_algorithm) / [`set_checksum_algorithm(Option<ChecksumAlgorithm>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::set_checksum_algorithm): <p>Indicates the algorithm used to create the checksum for the object when using the SDK. This header will not provide any additional functionality if not using the SDK. When sending this header, there must be a corresponding <code>x-amz-checksum</code> or <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> <p>If you provide an individual checksum, Amazon S3 ignores any provided <code>ChecksumAlgorithm</code> parameter.</p>
/// - [`replication_configuration(ReplicationConfiguration)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::replication_configuration) / [`set_replication_configuration(Option<ReplicationConfiguration>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::set_replication_configuration): <p>A container for replication rules. You can add up to 1,000 rules. The maximum size of a replication configuration is 2 MB.</p>
/// - [`token(impl Into<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::token) / [`set_token(Option<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::set_token): <p>A token to allow Object Lock to be enabled for an existing bucket.</p>
/// - [`expected_bucket_owner(impl Into<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::expected_bucket_owner) / [`set_expected_bucket_owner(Option<String>)`](crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::set_expected_bucket_owner): <p>The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
/// - On success, responds with [`PutBucketReplicationOutput`](crate::operation::put_bucket_replication::PutBucketReplicationOutput)
/// - On failure, responds with [`SdkError<PutBucketReplicationError>`](crate::operation::put_bucket_replication::PutBucketReplicationError)
pub fn put_bucket_replication(&self) -> crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder {
crate::operation::put_bucket_replication::builders::PutBucketReplicationFluentBuilder::new(self.handle.clone())
}
}