pub struct DeleteObjectTaggingRequest {
pub bucket: String,
pub key: String,
pub version_id: Option<String>,
}
Fields§
§bucket: String
The bucket name containing the objects from which to remove the tags.
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: String
Name of the tag.
version_id: Option<String>
The versionId of the object that the tag-set will be removed from.
Trait Implementations§
Source§impl Clone for DeleteObjectTaggingRequest
impl Clone for DeleteObjectTaggingRequest
Source§fn clone(&self) -> DeleteObjectTaggingRequest
fn clone(&self) -> DeleteObjectTaggingRequest
Returns a copy 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 DeleteObjectTaggingRequest
impl Debug for DeleteObjectTaggingRequest
Source§impl Default for DeleteObjectTaggingRequest
impl Default for DeleteObjectTaggingRequest
Source§fn default() -> DeleteObjectTaggingRequest
fn default() -> DeleteObjectTaggingRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteObjectTaggingRequest
Auto Trait Implementations§
impl Freeze for DeleteObjectTaggingRequest
impl RefUnwindSafe for DeleteObjectTaggingRequest
impl Send for DeleteObjectTaggingRequest
impl Sync for DeleteObjectTaggingRequest
impl Unpin for DeleteObjectTaggingRequest
impl UnwindSafe for DeleteObjectTaggingRequest
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