aws_sdk_cleanrooms/client/
get_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 [`GetConfiguredTableAssociationAnalysisRule`](crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::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::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::configured_table_association_identifier) / [`set_configured_table_association_identifier(Option<String>)`](crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::set_configured_table_association_identifier):<br>required: **true**<br><p>The identifier for the configured table association that's related to the analysis rule.</p><br>
8    ///   - [`analysis_rule_type(ConfiguredTableAssociationAnalysisRuleType)`](crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::analysis_rule_type) / [`set_analysis_rule_type(Option<ConfiguredTableAssociationAnalysisRuleType>)`](crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::set_analysis_rule_type):<br>required: **true**<br><p>The type of analysis rule that you want to retrieve.</p><br>
9    /// - On success, responds with [`GetConfiguredTableAssociationAnalysisRuleOutput`](crate::operation::get_configured_table_association_analysis_rule::GetConfiguredTableAssociationAnalysisRuleOutput) with field(s):
10    ///   - [`analysis_rule(Option<ConfiguredTableAssociationAnalysisRule>)`](crate::operation::get_configured_table_association_analysis_rule::GetConfiguredTableAssociationAnalysisRuleOutput::analysis_rule): <p>The analysis rule for the configured table association. In the console, the <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the <i>collaboration analysis rule</i>.</p>
11    /// - On failure, responds with [`SdkError<GetConfiguredTableAssociationAnalysisRuleError>`](crate::operation::get_configured_table_association_analysis_rule::GetConfiguredTableAssociationAnalysisRuleError)
12    pub fn get_configured_table_association_analysis_rule(
13        &self,
14    ) -> crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder {
15        crate::operation::get_configured_table_association_analysis_rule::builders::GetConfiguredTableAssociationAnalysisRuleFluentBuilder::new(
16            self.handle.clone(),
17        )
18    }
19}