aws_sdk_cleanrooms/client/list_id_mapping_tables.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 [`ListIdMappingTables`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`membership_identifier(impl Into<String>)`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The unique identifier of the membership that contains the ID mapping tables that you want to view.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token that's used to fetch the next set of results.</p><br>
9 /// - [`max_results(i32)`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum size of the results that is returned per call. Service chooses a default if it has not been set. Service may return a nextToken even if the maximum results has not been met.</p><br>
10 /// - On success, responds with [`ListIdMappingTablesOutput`](crate::operation::list_id_mapping_tables::ListIdMappingTablesOutput) with field(s):
11 /// - [`id_mapping_table_summaries(Vec::<IdMappingTableSummary>)`](crate::operation::list_id_mapping_tables::ListIdMappingTablesOutput::id_mapping_table_summaries): <p>The summary information of the ID mapping tables that you requested.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_id_mapping_tables::ListIdMappingTablesOutput::next_token): <p>The token value provided to access the next page of results.</p>
13 /// - On failure, responds with [`SdkError<ListIdMappingTablesError>`](crate::operation::list_id_mapping_tables::ListIdMappingTablesError)
14 pub fn list_id_mapping_tables(&self) -> crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder {
15 crate::operation::list_id_mapping_tables::builders::ListIdMappingTablesFluentBuilder::new(self.handle.clone())
16 }
17}