aws_sdk_s3tables/client/put_table_bucket_maintenance_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 [`PutTableBucketMaintenanceConfiguration`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`table_bucket_arn(impl Into<String>)`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance configuration.</p><br>
7 /// - [`r#type(TableBucketMaintenanceType)`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::type) / [`set_type(Option<TableBucketMaintenanceType>)`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::set_type):<br>required: **true**<br><p>The type of the maintenance configuration.</p><br>
8 /// - [`value(TableBucketMaintenanceConfigurationValue)`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::value) / [`set_value(Option<TableBucketMaintenanceConfigurationValue>)`](crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::set_value):<br>required: **true**<br><p>Defines the values of the maintenance configuration for the table bucket.</p><br>
9 /// - On success, responds with [`PutTableBucketMaintenanceConfigurationOutput`](crate::operation::put_table_bucket_maintenance_configuration::PutTableBucketMaintenanceConfigurationOutput)
10 /// - On failure, responds with [`SdkError<PutTableBucketMaintenanceConfigurationError>`](crate::operation::put_table_bucket_maintenance_configuration::PutTableBucketMaintenanceConfigurationError)
11 pub fn put_table_bucket_maintenance_configuration(
12 &self,
13 ) -> crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder {
14 crate::operation::put_table_bucket_maintenance_configuration::builders::PutTableBucketMaintenanceConfigurationFluentBuilder::new(
15 self.handle.clone(),
16 )
17 }
18}