aws_sdk_cleanrooms/client/
get_configured_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 [`GetConfiguredTable`](crate::operation::get_configured_table::builders::GetConfiguredTableFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configured_table_identifier(impl Into<String>)`](crate::operation::get_configured_table::builders::GetConfiguredTableFluentBuilder::configured_table_identifier) / [`set_configured_table_identifier(Option<String>)`](crate::operation::get_configured_table::builders::GetConfiguredTableFluentBuilder::set_configured_table_identifier):<br>required: **true**<br><p>The unique ID for the configured table to retrieve.</p><br>
7    /// - On success, responds with [`GetConfiguredTableOutput`](crate::operation::get_configured_table::GetConfiguredTableOutput) with field(s):
8    ///   - [`configured_table(Option<ConfiguredTable>)`](crate::operation::get_configured_table::GetConfiguredTableOutput::configured_table): <p>The retrieved configured table.</p>
9    /// - On failure, responds with [`SdkError<GetConfiguredTableError>`](crate::operation::get_configured_table::GetConfiguredTableError)
10    pub fn get_configured_table(&self) -> crate::operation::get_configured_table::builders::GetConfiguredTableFluentBuilder {
11        crate::operation::get_configured_table::builders::GetConfiguredTableFluentBuilder::new(self.handle.clone())
12    }
13}