aws_sdk_s3tables/client/put_table_bucket_storage_class.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 [`PutTableBucketStorageClass`](crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`table_bucket_arn(impl Into<String>)`](crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket.</p><br>
7 /// - [`storage_class_configuration(StorageClassConfiguration)`](crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder::storage_class_configuration) / [`set_storage_class_configuration(Option<StorageClassConfiguration>)`](crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder::set_storage_class_configuration):<br>required: **true**<br><p>The storage class configuration to apply to the table bucket. This configuration will serve as the default for new tables created in this bucket.</p><br>
8 /// - On success, responds with [`PutTableBucketStorageClassOutput`](crate::operation::put_table_bucket_storage_class::PutTableBucketStorageClassOutput)
9 /// - On failure, responds with [`SdkError<PutTableBucketStorageClassError>`](crate::operation::put_table_bucket_storage_class::PutTableBucketStorageClassError)
10 pub fn put_table_bucket_storage_class(
11 &self,
12 ) -> crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder {
13 crate::operation::put_table_bucket_storage_class::builders::PutTableBucketStorageClassFluentBuilder::new(self.handle.clone())
14 }
15}