pub struct GetObjectTaggingRequest {
pub bucket: String,
pub key: String,
pub version_id: Option<String>,
}Fields§
§bucket: StringThe bucket name containing the object for which to get the tagging information.
When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this operation using an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using Access Points in the Amazon Simple Storage Service Developer Guide.
key: StringObject key for which to get the tagging information.
version_id: Option<String>The versionId of the object for which to get the tagging information.
Trait Implementations§
Source§impl Clone for GetObjectTaggingRequest
impl Clone for GetObjectTaggingRequest
Source§fn clone(&self) -> GetObjectTaggingRequest
fn clone(&self) -> GetObjectTaggingRequest
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 GetObjectTaggingRequest
impl Debug for GetObjectTaggingRequest
Source§impl Default for GetObjectTaggingRequest
impl Default for GetObjectTaggingRequest
Source§fn default() -> GetObjectTaggingRequest
fn default() -> GetObjectTaggingRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetObjectTaggingRequest
impl PartialEq for GetObjectTaggingRequest
impl StructuralPartialEq for GetObjectTaggingRequest
Auto Trait Implementations§
impl Freeze for GetObjectTaggingRequest
impl RefUnwindSafe for GetObjectTaggingRequest
impl Send for GetObjectTaggingRequest
impl Sync for GetObjectTaggingRequest
impl Unpin for GetObjectTaggingRequest
impl UnwindSafe for GetObjectTaggingRequest
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