aws_sdk_cleanrooms/client/
delete_configured_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 [`DeleteConfiguredTable`](crate::operation::delete_configured_table::builders::DeleteConfiguredTableFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configured_table_identifier(impl Into<String>)`](crate::operation::delete_configured_table::builders::DeleteConfiguredTableFluentBuilder::configured_table_identifier) / [`set_configured_table_identifier(Option<String>)`](crate::operation::delete_configured_table::builders::DeleteConfiguredTableFluentBuilder::set_configured_table_identifier):<br>required: **true**<br><p>The unique ID for the configured table to delete.</p><br>
7    /// - On success, responds with [`DeleteConfiguredTableOutput`](crate::operation::delete_configured_table::DeleteConfiguredTableOutput)
8    /// - On failure, responds with [`SdkError<DeleteConfiguredTableError>`](crate::operation::delete_configured_table::DeleteConfiguredTableError)
9    pub fn delete_configured_table(&self) -> crate::operation::delete_configured_table::builders::DeleteConfiguredTableFluentBuilder {
10        crate::operation::delete_configured_table::builders::DeleteConfiguredTableFluentBuilder::new(self.handle.clone())
11    }
12}