aws_sdk_keyspaces/client/
delete_table.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 [`DeleteTable`](crate::operation::delete_table::builders::DeleteTableFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`keyspace_name(impl Into<String>)`](crate::operation::delete_table::builders::DeleteTableFluentBuilder::keyspace_name) / [`set_keyspace_name(Option<String>)`](crate::operation::delete_table::builders::DeleteTableFluentBuilder::set_keyspace_name):<br>required: **true**<br><p>The name of the keyspace of the to be deleted table.</p><br>
7    ///   - [`table_name(impl Into<String>)`](crate::operation::delete_table::builders::DeleteTableFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::delete_table::builders::DeleteTableFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table to be deleted.</p><br>
8    /// - On success, responds with [`DeleteTableOutput`](crate::operation::delete_table::DeleteTableOutput)
9    /// - On failure, responds with [`SdkError<DeleteTableError>`](crate::operation::delete_table::DeleteTableError)
10    pub fn delete_table(&self) -> crate::operation::delete_table::builders::DeleteTableFluentBuilder {
11        crate::operation::delete_table::builders::DeleteTableFluentBuilder::new(self.handle.clone())
12    }
13}