aws_sdk_s3tables/client/
get_table_bucket_replication.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetTableBucketReplication`](crate::operation::get_table_bucket_replication::builders::GetTableBucketReplicationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`table_bucket_arn(impl Into<String>)`](crate::operation::get_table_bucket_replication::builders::GetTableBucketReplicationFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::get_table_bucket_replication::builders::GetTableBucketReplicationFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket.</p><br>
7    /// - On success, responds with [`GetTableBucketReplicationOutput`](crate::operation::get_table_bucket_replication::GetTableBucketReplicationOutput) with field(s):
8    ///   - [`version_token(String)`](crate::operation::get_table_bucket_replication::GetTableBucketReplicationOutput::version_token): <p>A version token that represents the current state of the replication configuration. Use this token when updating the configuration to ensure consistency.</p>
9    ///   - [`configuration(Option<TableBucketReplicationConfiguration>)`](crate::operation::get_table_bucket_replication::GetTableBucketReplicationOutput::configuration): <p>The replication configuration for the table bucket, including the IAM role and replication rules.</p>
10    /// - On failure, responds with [`SdkError<GetTableBucketReplicationError>`](crate::operation::get_table_bucket_replication::GetTableBucketReplicationError)
11    pub fn get_table_bucket_replication(&self) -> crate::operation::get_table_bucket_replication::builders::GetTableBucketReplicationFluentBuilder {
12        crate::operation::get_table_bucket_replication::builders::GetTableBucketReplicationFluentBuilder::new(self.handle.clone())
13    }
14}