aws_sdk_s3tables/client/
get_table_bucket.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 [`GetTableBucket`](crate::operation::get_table_bucket::builders::GetTableBucketFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`table_bucket_arn(impl Into<String>)`](crate::operation::get_table_bucket::builders::GetTableBucketFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::get_table_bucket::builders::GetTableBucketFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket.</p><br>
7    /// - On success, responds with [`GetTableBucketOutput`](crate::operation::get_table_bucket::GetTableBucketOutput) with field(s):
8    ///   - [`arn(String)`](crate::operation::get_table_bucket::GetTableBucketOutput::arn): <p>The Amazon Resource Name (ARN) of the table bucket.</p>
9    ///   - [`name(String)`](crate::operation::get_table_bucket::GetTableBucketOutput::name): <p>The name of the table bucket</p>
10    ///   - [`owner_account_id(String)`](crate::operation::get_table_bucket::GetTableBucketOutput::owner_account_id): <p>The ID of the account that owns the table bucket.</p>
11    ///   - [`created_at(DateTime)`](crate::operation::get_table_bucket::GetTableBucketOutput::created_at): <p>The date and time the table bucket was created.</p>
12    ///   - [`table_bucket_id(Option<String>)`](crate::operation::get_table_bucket::GetTableBucketOutput::table_bucket_id): <p>The unique identifier of the table bucket.</p>
13    ///   - [`r#type(Option<TableBucketType>)`](crate::operation::get_table_bucket::GetTableBucketOutput::type): <p>The type of the table bucket.</p>
14    /// - On failure, responds with [`SdkError<GetTableBucketError>`](crate::operation::get_table_bucket::GetTableBucketError)
15    pub fn get_table_bucket(&self) -> crate::operation::get_table_bucket::builders::GetTableBucketFluentBuilder {
16        crate::operation::get_table_bucket::builders::GetTableBucketFluentBuilder::new(self.handle.clone())
17    }
18}