Struct aws_sdk_honeycode::types::FailedBatchItem
source · #[non_exhaustive]pub struct FailedBatchItem { /* private fields */ }
Expand description
A single item in a batch that failed to perform the intended action because of an error preventing it from succeeding.
Implementations§
source§impl FailedBatchItem
impl FailedBatchItem
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message that indicates why the batch item failed.
source§impl FailedBatchItem
impl FailedBatchItem
sourcepub fn builder() -> FailedBatchItemBuilder
pub fn builder() -> FailedBatchItemBuilder
Creates a new builder-style object to manufacture FailedBatchItem
.
Trait Implementations§
source§impl Clone for FailedBatchItem
impl Clone for FailedBatchItem
source§fn clone(&self) -> FailedBatchItem
fn clone(&self) -> FailedBatchItem
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 FailedBatchItem
impl Debug for FailedBatchItem
source§impl PartialEq<FailedBatchItem> for FailedBatchItem
impl PartialEq<FailedBatchItem> for FailedBatchItem
source§fn eq(&self, other: &FailedBatchItem) -> bool
fn eq(&self, other: &FailedBatchItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.