aws_sdk_s3tables/client/delete_namespace.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 [`DeleteNamespace`](crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`table_bucket_arn(impl Into<String>)`](crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket associated with the namespace.</p><br>
7 /// - [`namespace(impl Into<String>)`](crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder::set_namespace):<br>required: **true**<br><p>The name of the namespace.</p><br>
8 /// - On success, responds with [`DeleteNamespaceOutput`](crate::operation::delete_namespace::DeleteNamespaceOutput)
9 /// - On failure, responds with [`SdkError<DeleteNamespaceError>`](crate::operation::delete_namespace::DeleteNamespaceError)
10 pub fn delete_namespace(&self) -> crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder {
11 crate::operation::delete_namespace::builders::DeleteNamespaceFluentBuilder::new(self.handle.clone())
12 }
13}