aws_sdk_s3tables/client/delete_table_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 [`DeleteTableReplication`](crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`table_arn(impl Into<String>)`](crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder::table_arn) / [`set_table_arn(Option<String>)`](crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder::set_table_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table.</p><br>
7 /// - [`version_token(impl Into<String>)`](crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder::version_token) / [`set_version_token(Option<String>)`](crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder::set_version_token):<br>required: **true**<br><p>A version token from a previous GetTableReplication call. Use this token to ensure you're deleting the expected version of the configuration.</p><br>
8 /// - On success, responds with [`DeleteTableReplicationOutput`](crate::operation::delete_table_replication::DeleteTableReplicationOutput)
9 /// - On failure, responds with [`SdkError<DeleteTableReplicationError>`](crate::operation::delete_table_replication::DeleteTableReplicationError)
10 pub fn delete_table_replication(&self) -> crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder {
11 crate::operation::delete_table_replication::builders::DeleteTableReplicationFluentBuilder::new(self.handle.clone())
12 }
13}