Struct aws_sdk_s3::types::DeletedObject
source · #[non_exhaustive]pub struct DeletedObject { /* private fields */ }
Expand description
Information about the deleted object.
Implementations§
source§impl DeletedObject
impl DeletedObject
sourcepub fn version_id(&self) -> Option<&str>
pub fn version_id(&self) -> Option<&str>
The version ID of the deleted object.
sourcepub fn delete_marker(&self) -> bool
pub fn delete_marker(&self) -> bool
Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker. In a simple DELETE, this header indicates whether (true) or not (false) a delete marker was created.
sourcepub fn delete_marker_version_id(&self) -> Option<&str>
pub fn delete_marker_version_id(&self) -> Option<&str>
The version ID of the delete marker created as a result of the DELETE operation. If you delete a specific object version, the value returned by this header is the version ID of the object version deleted.
source§impl DeletedObject
impl DeletedObject
sourcepub fn builder() -> DeletedObjectBuilder
pub fn builder() -> DeletedObjectBuilder
Creates a new builder-style object to manufacture DeletedObject
.
Trait Implementations§
source§impl Clone for DeletedObject
impl Clone for DeletedObject
source§fn clone(&self) -> DeletedObject
fn clone(&self) -> DeletedObject
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 DeletedObject
impl Debug for DeletedObject
source§impl PartialEq<DeletedObject> for DeletedObject
impl PartialEq<DeletedObject> for DeletedObject
source§fn eq(&self, other: &DeletedObject) -> bool
fn eq(&self, other: &DeletedObject) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.