aws_sdk_s3tables/client/
get_table_metadata_location.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 [`GetTableMetadataLocation`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`table_bucket_arn(impl Into<String>)`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket.</p><br>
7    ///   - [`namespace(impl Into<String>)`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace of the table.</p><br>
8    ///   - [`name(impl Into<String>)`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::set_name):<br>required: **true**<br><p>The name of the table.</p><br>
9    /// - On success, responds with [`GetTableMetadataLocationOutput`](crate::operation::get_table_metadata_location::GetTableMetadataLocationOutput) with field(s):
10    ///   - [`version_token(String)`](crate::operation::get_table_metadata_location::GetTableMetadataLocationOutput::version_token): <p>The version token.</p>
11    ///   - [`metadata_location(Option<String>)`](crate::operation::get_table_metadata_location::GetTableMetadataLocationOutput::metadata_location): <p>The metadata location.</p>
12    ///   - [`warehouse_location(String)`](crate::operation::get_table_metadata_location::GetTableMetadataLocationOutput::warehouse_location): <p>The warehouse location.</p>
13    /// - On failure, responds with [`SdkError<GetTableMetadataLocationError>`](crate::operation::get_table_metadata_location::GetTableMetadataLocationError)
14    pub fn get_table_metadata_location(&self) -> crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder {
15        crate::operation::get_table_metadata_location::builders::GetTableMetadataLocationFluentBuilder::new(self.handle.clone())
16    }
17}