Skip to main content

aws_sdk_s3/client/
update_bucket_metadata_annotation_table_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 [`UpdateBucketMetadataAnnotationTableConfiguration`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`bucket(impl Into<String>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::bucket) / [`set_bucket(Option<String>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::set_bucket):<br>required: **true**<br><p>The name of the bucket whose annotation table configuration to update.</p><br>
7    ///   - [`content_md5(impl Into<String>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::content_md5) / [`set_content_md5(Option<String>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::set_content_md5):<br>required: **false**<br><p>Base64-encoded MD5 digest of the message body.</p><br>
8    ///   - [`checksum_algorithm(ChecksumAlgorithm)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::checksum_algorithm) / [`set_checksum_algorithm(Option<ChecksumAlgorithm>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::set_checksum_algorithm):<br>required: **false**<br><p>Checksum algorithm for the request payload.</p><br>
9    ///   - [`annotation_table_configuration(AnnotationTableConfigurationUpdates)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::annotation_table_configuration) / [`set_annotation_table_configuration(Option<AnnotationTableConfigurationUpdates>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::set_annotation_table_configuration):<br>required: **true**<br><p>The annotation table configuration updates to apply.</p><br>
10    ///   - [`expected_bucket_owner(impl Into<String>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::expected_bucket_owner) / [`set_expected_bucket_owner(Option<String>)`](crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::set_expected_bucket_owner):<br>required: **false**<br><p>The account ID of the expected bucket owner.</p><br>
11    /// - On success, responds with [`UpdateBucketMetadataAnnotationTableConfigurationOutput`](crate::operation::update_bucket_metadata_annotation_table_configuration::UpdateBucketMetadataAnnotationTableConfigurationOutput)
12    /// - On failure, responds with [`SdkError<UpdateBucketMetadataAnnotationTableConfigurationError>`](crate::operation::update_bucket_metadata_annotation_table_configuration::UpdateBucketMetadataAnnotationTableConfigurationError)
13    pub fn update_bucket_metadata_annotation_table_configuration(&self) -> crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder{
14        crate::operation::update_bucket_metadata_annotation_table_configuration::builders::UpdateBucketMetadataAnnotationTableConfigurationFluentBuilder::new(self.handle.clone())
15    }
16}