pub struct PutObjectTaggingInput {
pub bucket: String,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub content_md5: Option<String>,
pub expected_bucket_owner: Option<String>,
pub key: String,
pub request_payer: Option<RequestPayer>,
pub tagging: Tagging,
pub version_id: Option<String>,
}Expand description
S3 PutObjectTaggingInput.
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.
key: StringHTTP label (URI path).
request_payer: Option<RequestPayer>HTTP header: x-amz-request-payer.
tagging: TaggingHTTP payload body.
version_id: Option<String>HTTP query: versionId.
Trait Implementations§
Source§impl Clone for PutObjectTaggingInput
impl Clone for PutObjectTaggingInput
Source§fn clone(&self) -> PutObjectTaggingInput
fn clone(&self) -> PutObjectTaggingInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PutObjectTaggingInput
impl Debug for PutObjectTaggingInput
Source§impl Default for PutObjectTaggingInput
impl Default for PutObjectTaggingInput
Source§fn default() -> PutObjectTaggingInput
fn default() -> PutObjectTaggingInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PutObjectTaggingInput
impl RefUnwindSafe for PutObjectTaggingInput
impl Send for PutObjectTaggingInput
impl Sync for PutObjectTaggingInput
impl Unpin for PutObjectTaggingInput
impl UnsafeUnpin for PutObjectTaggingInput
impl UnwindSafe for PutObjectTaggingInput
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