Struct aws_sdk_sns::types::BatchResultErrorEntry
source · #[non_exhaustive]pub struct BatchResultErrorEntry { /* private fields */ }Expand description
Gives a detailed description of failed messages in the batch.
Implementations§
source§impl BatchResultErrorEntry
impl BatchResultErrorEntry
sourcepub fn code(&self) -> Option<&str>
pub fn code(&self) -> Option<&str>
An error code representing why the action failed on this entry.
sourcepub fn message(&self) -> Option<&str>
pub fn message(&self) -> Option<&str>
A message explaining why the action failed on this entry.
sourcepub fn sender_fault(&self) -> bool
pub fn sender_fault(&self) -> bool
Specifies whether the error happened due to the caller of the batch API action.
source§impl BatchResultErrorEntry
impl BatchResultErrorEntry
sourcepub fn builder() -> BatchResultErrorEntryBuilder
pub fn builder() -> BatchResultErrorEntryBuilder
Creates a new builder-style object to manufacture BatchResultErrorEntry.
Trait Implementations§
source§impl Clone for BatchResultErrorEntry
impl Clone for BatchResultErrorEntry
source§fn clone(&self) -> BatchResultErrorEntry
fn clone(&self) -> BatchResultErrorEntry
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 BatchResultErrorEntry
impl Debug for BatchResultErrorEntry
source§impl PartialEq<BatchResultErrorEntry> for BatchResultErrorEntry
impl PartialEq<BatchResultErrorEntry> for BatchResultErrorEntry
source§fn eq(&self, other: &BatchResultErrorEntry) -> bool
fn eq(&self, other: &BatchResultErrorEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchResultErrorEntry
Auto Trait Implementations§
impl RefUnwindSafe for BatchResultErrorEntry
impl Send for BatchResultErrorEntry
impl Sync for BatchResultErrorEntry
impl Unpin for BatchResultErrorEntry
impl UnwindSafe for BatchResultErrorEntry
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