aws_sdk_s3tables/client/delete_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 [`DeleteTableBucketReplication`](crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`table_bucket_arn(impl Into<String>)`](crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket.</p><br>
7 /// - [`version_token(impl Into<String>)`](crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder::version_token) / [`set_version_token(Option<String>)`](crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder::set_version_token):<br>required: **false**<br><p>A version token from a previous GetTableBucketReplication call. Use this token to ensure you're deleting the expected version of the configuration.</p><br>
8 /// - On success, responds with [`DeleteTableBucketReplicationOutput`](crate::operation::delete_table_bucket_replication::DeleteTableBucketReplicationOutput)
9 /// - On failure, responds with [`SdkError<DeleteTableBucketReplicationError>`](crate::operation::delete_table_bucket_replication::DeleteTableBucketReplicationError)
10 pub fn delete_table_bucket_replication(
11 &self,
12 ) -> crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder {
13 crate::operation::delete_table_bucket_replication::builders::DeleteTableBucketReplicationFluentBuilder::new(self.handle.clone())
14 }
15}