Struct aws_sdk_sqs::output::DeleteMessageBatchOutput
source · #[non_exhaustive]pub struct DeleteMessageBatchOutput { /* private fields */ }
Expand description
For each message in the batch, the response contains a
tag if the message is deleted or a DeleteMessageBatchResultEntry
tag if the message can't be deleted.BatchResultErrorEntry
Implementations§
source§impl DeleteMessageBatchOutput
impl DeleteMessageBatchOutput
sourcepub fn successful(&self) -> Option<&[DeleteMessageBatchResultEntry]>
pub fn successful(&self) -> Option<&[DeleteMessageBatchResultEntry]>
A list of
items.DeleteMessageBatchResultEntry
sourcepub fn failed(&self) -> Option<&[BatchResultErrorEntry]>
pub fn failed(&self) -> Option<&[BatchResultErrorEntry]>
A list of
items.BatchResultErrorEntry
source§impl DeleteMessageBatchOutput
impl DeleteMessageBatchOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteMessageBatchOutput
.
Trait Implementations§
source§impl Clone for DeleteMessageBatchOutput
impl Clone for DeleteMessageBatchOutput
source§fn clone(&self) -> DeleteMessageBatchOutput
fn clone(&self) -> DeleteMessageBatchOutput
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 DeleteMessageBatchOutput
impl Debug for DeleteMessageBatchOutput
source§impl PartialEq<DeleteMessageBatchOutput> for DeleteMessageBatchOutput
impl PartialEq<DeleteMessageBatchOutput> for DeleteMessageBatchOutput
source§fn eq(&self, other: &DeleteMessageBatchOutput) -> bool
fn eq(&self, other: &DeleteMessageBatchOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.