aws_sdk_cleanrooms/client/delete_configured_table_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 [`DeleteConfiguredTableAnalysisRule`](crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`configured_table_identifier(impl Into<String>)`](crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder::configured_table_identifier) / [`set_configured_table_identifier(Option<String>)`](crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder::set_configured_table_identifier):<br>required: **true**<br><p>The unique identifier for the configured table that the analysis rule applies to. Currently accepts the configured table ID.</p><br>
7 /// - [`analysis_rule_type(ConfiguredTableAnalysisRuleType)`](crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder::analysis_rule_type) / [`set_analysis_rule_type(Option<ConfiguredTableAnalysisRuleType>)`](crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder::set_analysis_rule_type):<br>required: **true**<br><p>The analysis rule type to be deleted. Configured table analysis rules are uniquely identified by their configured table identifier and analysis rule type.</p><br>
8 /// - On success, responds with [`DeleteConfiguredTableAnalysisRuleOutput`](crate::operation::delete_configured_table_analysis_rule::DeleteConfiguredTableAnalysisRuleOutput)
9 /// - On failure, responds with [`SdkError<DeleteConfiguredTableAnalysisRuleError>`](crate::operation::delete_configured_table_analysis_rule::DeleteConfiguredTableAnalysisRuleError)
10 pub fn delete_configured_table_analysis_rule(
11 &self,
12 ) -> crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder {
13 crate::operation::delete_configured_table_analysis_rule::builders::DeleteConfiguredTableAnalysisRuleFluentBuilder::new(self.handle.clone())
14 }
15}