aws_sdk_s3tables/client/get_table_bucket_metrics_configuration.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 [`GetTableBucketMetricsConfiguration`](crate::operation::get_table_bucket_metrics_configuration::builders::GetTableBucketMetricsConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`table_bucket_arn(impl Into<String>)`](crate::operation::get_table_bucket_metrics_configuration::builders::GetTableBucketMetricsConfigurationFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::get_table_bucket_metrics_configuration::builders::GetTableBucketMetricsConfigurationFluentBuilder::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 [`GetTableBucketMetricsConfigurationOutput`](crate::operation::get_table_bucket_metrics_configuration::GetTableBucketMetricsConfigurationOutput) with field(s):
8 /// - [`table_bucket_arn(String)`](crate::operation::get_table_bucket_metrics_configuration::GetTableBucketMetricsConfigurationOutput::table_bucket_arn): <p>The Amazon Resource Name (ARN) of the table bucket.</p>
9 /// - [`id(Option<String>)`](crate::operation::get_table_bucket_metrics_configuration::GetTableBucketMetricsConfigurationOutput::id): <p>The unique identifier of the metrics configuration.</p>
10 /// - On failure, responds with [`SdkError<GetTableBucketMetricsConfigurationError>`](crate::operation::get_table_bucket_metrics_configuration::GetTableBucketMetricsConfigurationError)
11 pub fn get_table_bucket_metrics_configuration(
12 &self,
13 ) -> crate::operation::get_table_bucket_metrics_configuration::builders::GetTableBucketMetricsConfigurationFluentBuilder {
14 crate::operation::get_table_bucket_metrics_configuration::builders::GetTableBucketMetricsConfigurationFluentBuilder::new(self.handle.clone())
15 }
16}