aws_sdk_cleanrooms/client/
list_configured_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 [`ListConfiguredTables`](crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token that's used to fetch the next set of results.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the `maxResults` value has not been met.</p><br>
9    /// - On success, responds with [`ListConfiguredTablesOutput`](crate::operation::list_configured_tables::ListConfiguredTablesOutput) with field(s):
10    ///   - [`configured_table_summaries(Vec::<ConfiguredTableSummary>)`](crate::operation::list_configured_tables::ListConfiguredTablesOutput::configured_table_summaries): <p>The configured tables listed by the request.</p>
11    ///   - [`next_token(Option<String>)`](crate::operation::list_configured_tables::ListConfiguredTablesOutput::next_token): <p>The pagination token that's used to fetch the next set of results.</p>
12    /// - On failure, responds with [`SdkError<ListConfiguredTablesError>`](crate::operation::list_configured_tables::ListConfiguredTablesError)
13    pub fn list_configured_tables(&self) -> crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder {
14        crate::operation::list_configured_tables::builders::ListConfiguredTablesFluentBuilder::new(self.handle.clone())
15    }
16}