Struct bonsaidb::keystorage::s3::aws_sdk_s3::operation::put_bucket_tagging::builders::PutBucketTaggingInputBuilder
#[non_exhaustive]pub struct PutBucketTaggingInputBuilder { /* private fields */ }
Expand description
A builder for PutBucketTaggingInput
.
Implementations§
§impl PutBucketTaggingInputBuilder
impl PutBucketTaggingInputBuilder
pub fn bucket(self, input: impl Into<String>) -> PutBucketTaggingInputBuilder
pub fn bucket(self, input: impl Into<String>) -> PutBucketTaggingInputBuilder
The bucket name.
pub fn set_bucket(self, input: Option<String>) -> PutBucketTaggingInputBuilder
pub fn set_bucket(self, input: Option<String>) -> PutBucketTaggingInputBuilder
The bucket name.
pub fn get_bucket(&self) -> &Option<String>
pub fn get_bucket(&self) -> &Option<String>
The bucket name.
pub fn content_md5(
self,
input: impl Into<String>
) -> PutBucketTaggingInputBuilder
pub fn content_md5( self, input: impl Into<String> ) -> PutBucketTaggingInputBuilder
The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
pub fn set_content_md5(
self,
input: Option<String>
) -> PutBucketTaggingInputBuilder
pub fn set_content_md5( self, input: Option<String> ) -> PutBucketTaggingInputBuilder
The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
pub fn get_content_md5(&self) -> &Option<String>
pub fn get_content_md5(&self) -> &Option<String>
The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
pub fn checksum_algorithm(
self,
input: ChecksumAlgorithm
) -> PutBucketTaggingInputBuilder
pub fn checksum_algorithm( self, input: ChecksumAlgorithm ) -> PutBucketTaggingInputBuilder
Indicates the algorithm used to create the checksum for the object when using the SDK. This header will not provide any additional functionality if not using the SDK. When sending this header, there must be a corresponding x-amz-checksum
or x-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code 400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.
If you provide an individual checksum, Amazon S3 ignores any provided ChecksumAlgorithm
parameter.
pub fn set_checksum_algorithm(
self,
input: Option<ChecksumAlgorithm>
) -> PutBucketTaggingInputBuilder
pub fn set_checksum_algorithm( self, input: Option<ChecksumAlgorithm> ) -> PutBucketTaggingInputBuilder
Indicates the algorithm used to create the checksum for the object when using the SDK. This header will not provide any additional functionality if not using the SDK. When sending this header, there must be a corresponding x-amz-checksum
or x-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code 400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.
If you provide an individual checksum, Amazon S3 ignores any provided ChecksumAlgorithm
parameter.
pub fn get_checksum_algorithm(&self) -> &Option<ChecksumAlgorithm>
pub fn get_checksum_algorithm(&self) -> &Option<ChecksumAlgorithm>
Indicates the algorithm used to create the checksum for the object when using the SDK. This header will not provide any additional functionality if not using the SDK. When sending this header, there must be a corresponding x-amz-checksum
or x-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code 400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.
If you provide an individual checksum, Amazon S3 ignores any provided ChecksumAlgorithm
parameter.
pub fn tagging(self, input: Tagging) -> PutBucketTaggingInputBuilder
pub fn tagging(self, input: Tagging) -> PutBucketTaggingInputBuilder
Container for the TagSet
and Tag
elements.
pub fn set_tagging(self, input: Option<Tagging>) -> PutBucketTaggingInputBuilder
pub fn set_tagging(self, input: Option<Tagging>) -> PutBucketTaggingInputBuilder
Container for the TagSet
and Tag
elements.
pub fn get_tagging(&self) -> &Option<Tagging>
pub fn get_tagging(&self) -> &Option<Tagging>
Container for the TagSet
and Tag
elements.
pub fn expected_bucket_owner(
self,
input: impl Into<String>
) -> PutBucketTaggingInputBuilder
pub fn expected_bucket_owner( self, input: impl Into<String> ) -> PutBucketTaggingInputBuilder
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
pub fn set_expected_bucket_owner(
self,
input: Option<String>
) -> PutBucketTaggingInputBuilder
pub fn set_expected_bucket_owner( self, input: Option<String> ) -> PutBucketTaggingInputBuilder
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
pub fn get_expected_bucket_owner(&self) -> &Option<String>
pub fn get_expected_bucket_owner(&self) -> &Option<String>
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
pub fn build(self) -> Result<PutBucketTaggingInput, BuildError>
pub fn build(self) -> Result<PutBucketTaggingInput, BuildError>
Consumes the builder and constructs a PutBucketTaggingInput
.
§impl PutBucketTaggingInputBuilder
impl PutBucketTaggingInputBuilder
pub async fn send_with(
self,
client: &Client
) -> Result<PutBucketTaggingOutput, SdkError<PutBucketTaggingError, Response<SdkBody>>>
pub async fn send_with( self, client: &Client ) -> Result<PutBucketTaggingOutput, SdkError<PutBucketTaggingError, Response<SdkBody>>>
Sends a request with this input using the given client.
Trait Implementations§
§impl Clone for PutBucketTaggingInputBuilder
impl Clone for PutBucketTaggingInputBuilder
§fn clone(&self) -> PutBucketTaggingInputBuilder
fn clone(&self) -> PutBucketTaggingInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for PutBucketTaggingInputBuilder
impl Debug for PutBucketTaggingInputBuilder
§impl Default for PutBucketTaggingInputBuilder
impl Default for PutBucketTaggingInputBuilder
§fn default() -> PutBucketTaggingInputBuilder
fn default() -> PutBucketTaggingInputBuilder
§impl PartialEq for PutBucketTaggingInputBuilder
impl PartialEq for PutBucketTaggingInputBuilder
§fn eq(&self, other: &PutBucketTaggingInputBuilder) -> bool
fn eq(&self, other: &PutBucketTaggingInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.