#[non_exhaustive]pub struct DeleteObjectOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteObjectOutput
.
Implementations§
source§impl DeleteObjectOutputBuilder
impl DeleteObjectOutputBuilder
sourcepub fn delete_marker(self, input: bool) -> Self
pub fn delete_marker(self, input: bool) -> Self
Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.
sourcepub fn set_delete_marker(self, input: Option<bool>) -> Self
pub fn set_delete_marker(self, input: Option<bool>) -> Self
Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
Returns the version ID of the delete marker created as a result of the DELETE operation.
sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
Returns the version ID of the delete marker created as a result of the DELETE operation.
sourcepub fn request_charged(self, input: RequestCharged) -> Self
pub fn request_charged(self, input: RequestCharged) -> Self
If present, indicates that the requester was successfully charged for the request.
sourcepub fn set_request_charged(self, input: Option<RequestCharged>) -> Self
pub fn set_request_charged(self, input: Option<RequestCharged>) -> Self
If present, indicates that the requester was successfully charged for the request.
sourcepub fn build(self) -> DeleteObjectOutput
pub fn build(self) -> DeleteObjectOutput
Consumes the builder and constructs a DeleteObjectOutput
.
Trait Implementations§
source§impl Clone for DeleteObjectOutputBuilder
impl Clone for DeleteObjectOutputBuilder
source§fn clone(&self) -> DeleteObjectOutputBuilder
fn clone(&self) -> DeleteObjectOutputBuilder
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 DeleteObjectOutputBuilder
impl Debug for DeleteObjectOutputBuilder
source§impl Default for DeleteObjectOutputBuilder
impl Default for DeleteObjectOutputBuilder
source§fn default() -> DeleteObjectOutputBuilder
fn default() -> DeleteObjectOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteObjectOutputBuilder> for DeleteObjectOutputBuilder
impl PartialEq<DeleteObjectOutputBuilder> for DeleteObjectOutputBuilder
source§fn eq(&self, other: &DeleteObjectOutputBuilder) -> bool
fn eq(&self, other: &DeleteObjectOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteObjectOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteObjectOutputBuilder
impl Send for DeleteObjectOutputBuilder
impl Sync for DeleteObjectOutputBuilder
impl Unpin for DeleteObjectOutputBuilder
impl UnwindSafe for DeleteObjectOutputBuilder
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