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