aws_sdk_cleanrooms/client/
delete_configured_table_association.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 [`DeleteConfiguredTableAssociation`](crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configured_table_association_identifier(impl Into<String>)`](crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder::configured_table_association_identifier) / [`set_configured_table_association_identifier(Option<String>)`](crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder::set_configured_table_association_identifier):<br>required: **true**<br><p>The unique ID for the configured table association to be deleted. Currently accepts the configured table ID.</p><br>
7    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>A unique identifier for the membership that the configured table association belongs to. Currently accepts the membership ID.</p><br>
8    /// - On success, responds with [`DeleteConfiguredTableAssociationOutput`](crate::operation::delete_configured_table_association::DeleteConfiguredTableAssociationOutput)
9    /// - On failure, responds with [`SdkError<DeleteConfiguredTableAssociationError>`](crate::operation::delete_configured_table_association::DeleteConfiguredTableAssociationError)
10    pub fn delete_configured_table_association(
11        &self,
12    ) -> crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder {
13        crate::operation::delete_configured_table_association::builders::DeleteConfiguredTableAssociationFluentBuilder::new(self.handle.clone())
14    }
15}