pub struct PutBucketTaggingInput {
pub bucket: String,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub content_md5: Option<String>,
pub expected_bucket_owner: Option<String>,
pub tagging: Tagging,
}Expand description
S3 PutBucketTaggingInput.
Fields§
§bucket: StringHTTP label (URI path).
checksum_algorithm: Option<ChecksumAlgorithm>HTTP header: x-amz-sdk-checksum-algorithm.
content_md5: Option<String>HTTP header: Content-MD5.
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
tagging: TaggingHTTP payload body.
Trait Implementations§
Source§impl Clone for PutBucketTaggingInput
impl Clone for PutBucketTaggingInput
Source§fn clone(&self) -> PutBucketTaggingInput
fn clone(&self) -> PutBucketTaggingInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PutBucketTaggingInput
impl Debug for PutBucketTaggingInput
Source§impl Default for PutBucketTaggingInput
impl Default for PutBucketTaggingInput
Source§fn default() -> PutBucketTaggingInput
fn default() -> PutBucketTaggingInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PutBucketTaggingInput
impl RefUnwindSafe for PutBucketTaggingInput
impl Send for PutBucketTaggingInput
impl Sync for PutBucketTaggingInput
impl Unpin for PutBucketTaggingInput
impl UnsafeUnpin for PutBucketTaggingInput
impl UnwindSafe for PutBucketTaggingInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more