aws_sdk_cleanrooms/client/get_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 [`GetConfiguredTableAssociation`](crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`configured_table_association_identifier(impl Into<String>)`](crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder::configured_table_association_identifier) / [`set_configured_table_association_identifier(Option<String>)`](crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder::set_configured_table_association_identifier):<br>required: **true**<br><p>The unique ID for the configured table association to retrieve. Currently accepts the configured table ID.</p><br>
7 /// - [`membership_identifier(impl Into<String>)`](crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder::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 [`GetConfiguredTableAssociationOutput`](crate::operation::get_configured_table_association::GetConfiguredTableAssociationOutput) with field(s):
9 /// - [`configured_table_association(Option<ConfiguredTableAssociation>)`](crate::operation::get_configured_table_association::GetConfiguredTableAssociationOutput::configured_table_association): <p>The entire configured table association object.</p>
10 /// - On failure, responds with [`SdkError<GetConfiguredTableAssociationError>`](crate::operation::get_configured_table_association::GetConfiguredTableAssociationError)
11 pub fn get_configured_table_association(
12 &self,
13 ) -> crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder {
14 crate::operation::get_configured_table_association::builders::GetConfiguredTableAssociationFluentBuilder::new(self.handle.clone())
15 }
16}