aws_sdk_cleanrooms/client/
delete_configured_table_association_analysis_rule.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 [`DeleteConfiguredTableAssociationAnalysisRule`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::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>
7    ///   - [`configured_table_association_identifier(impl Into<String>)`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::configured_table_association_identifier) / [`set_configured_table_association_identifier(Option<String>)`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::set_configured_table_association_identifier):<br>required: **true**<br><p>The identifier for the configured table association that's related to the analysis rule that you want to delete.</p><br>
8    ///   - [`analysis_rule_type(ConfiguredTableAssociationAnalysisRuleType)`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::analysis_rule_type) / [`set_analysis_rule_type(Option<ConfiguredTableAssociationAnalysisRuleType>)`](crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::set_analysis_rule_type):<br>required: **true**<br><p>The type of the analysis rule that you want to delete.</p><br>
9    /// - On success, responds with [`DeleteConfiguredTableAssociationAnalysisRuleOutput`](crate::operation::delete_configured_table_association_analysis_rule::DeleteConfiguredTableAssociationAnalysisRuleOutput)
10    /// - On failure, responds with [`SdkError<DeleteConfiguredTableAssociationAnalysisRuleError>`](crate::operation::delete_configured_table_association_analysis_rule::DeleteConfiguredTableAssociationAnalysisRuleError)
11    pub fn delete_configured_table_association_analysis_rule(
12        &self,
13    ) -> crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder
14    {
15        crate::operation::delete_configured_table_association_analysis_rule::builders::DeleteConfiguredTableAssociationAnalysisRuleFluentBuilder::new(
16            self.handle.clone(),
17        )
18    }
19}