Struct aws_sdk_sns::types::BatchResultErrorEntry
source · #[non_exhaustive]pub struct BatchResultErrorEntry {
pub id: String,
pub code: String,
pub message: Option<String>,
pub sender_fault: bool,
}
Expand description
Gives a detailed description of failed messages in the batch.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: String
The Id
of an entry in a batch request
code: String
An error code representing why the action failed on this entry.
message: Option<String>
A message explaining why the action failed on this entry.
sender_fault: bool
Specifies whether the error happened due to the caller of the batch API action.
Implementations§
source§impl BatchResultErrorEntry
impl BatchResultErrorEntry
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 for BatchResultErrorEntry
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.