aws_sdk_cleanrooms/client/get_id_mapping_table.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 [`GetIdMappingTable`](crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id_mapping_table_identifier(impl Into<String>)`](crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder::id_mapping_table_identifier) / [`set_id_mapping_table_identifier(Option<String>)`](crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder::set_id_mapping_table_identifier):<br>required: **true**<br><p>The unique identifier of the ID mapping table identifier that you want to retrieve.</p><br>
7 /// - [`membership_identifier(impl Into<String>)`](crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The unique identifier of the membership that contains the ID mapping table that you want to retrieve.</p><br>
8 /// - On success, responds with [`GetIdMappingTableOutput`](crate::operation::get_id_mapping_table::GetIdMappingTableOutput) with field(s):
9 /// - [`id_mapping_table(Option<IdMappingTable>)`](crate::operation::get_id_mapping_table::GetIdMappingTableOutput::id_mapping_table): <p>The ID mapping table that you requested.</p>
10 /// - On failure, responds with [`SdkError<GetIdMappingTableError>`](crate::operation::get_id_mapping_table::GetIdMappingTableError)
11 pub fn get_id_mapping_table(&self) -> crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder {
12 crate::operation::get_id_mapping_table::builders::GetIdMappingTableFluentBuilder::new(self.handle.clone())
13 }
14}