pub struct PutObjectTaggingResponse {
pub headers: HeaderMap,
pub region: String,
pub bucket: String,
pub object: String,
pub version_id: Option<String>,
}
Expand description
Response of put_object_tagging() API
Fields§
§headers: HeaderMap
HTTP headers returned by the server, containing metadata such as Content-Type
, ETag
, etc.
region: String
The AWS region where the bucket resides.
bucket: String
Name of the bucket containing the object.
object: String
Key (path) identifying the object within the bucket.
version_id: Option<String>
Version ID of the object, if versioning is enabled. Value of the x-amz-version-id
header.
Trait Implementations§
Source§impl Clone for PutObjectTaggingResponse
impl Clone for PutObjectTaggingResponse
Source§fn clone(&self) -> PutObjectTaggingResponse
fn clone(&self) -> PutObjectTaggingResponse
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 PutObjectTaggingResponse
impl Debug for PutObjectTaggingResponse
Auto Trait Implementations§
impl Freeze for PutObjectTaggingResponse
impl RefUnwindSafe for PutObjectTaggingResponse
impl Send for PutObjectTaggingResponse
impl Sync for PutObjectTaggingResponse
impl Unpin for PutObjectTaggingResponse
impl UnwindSafe for PutObjectTaggingResponse
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