pub struct TransactWriteItemsOutput {
pub consumed_capacity: Option<Vec<ConsumedCapacity>>,
pub item_collection_metrics: Option<HashMap<String, Vec<ItemCollectionMetrics>>>,
}
Fields§
§consumed_capacity: Option<Vec<ConsumedCapacity>>
The capacity units consumed by the entire TransactWriteItems
operation. The values of the list are ordered according to the ordering of the TransactItems
request parameter.
item_collection_metrics: Option<HashMap<String, Vec<ItemCollectionMetrics>>>
A list of tables that were processed by TransactWriteItems
and, for each table, information about any item collections that were affected by individual UpdateItem
, PutItem
, or DeleteItem
operations.
Trait Implementations§
Source§impl Clone for TransactWriteItemsOutput
impl Clone for TransactWriteItemsOutput
Source§fn clone(&self) -> TransactWriteItemsOutput
fn clone(&self) -> TransactWriteItemsOutput
Returns a duplicate 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 TransactWriteItemsOutput
impl Debug for TransactWriteItemsOutput
Source§impl Default for TransactWriteItemsOutput
impl Default for TransactWriteItemsOutput
Source§fn default() -> TransactWriteItemsOutput
fn default() -> TransactWriteItemsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactWriteItemsOutput
impl<'de> Deserialize<'de> for TransactWriteItemsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TransactWriteItemsOutput
impl PartialEq for TransactWriteItemsOutput
impl StructuralPartialEq for TransactWriteItemsOutput
Auto Trait Implementations§
impl Freeze for TransactWriteItemsOutput
impl RefUnwindSafe for TransactWriteItemsOutput
impl Send for TransactWriteItemsOutput
impl Sync for TransactWriteItemsOutput
impl Unpin for TransactWriteItemsOutput
impl UnwindSafe for TransactWriteItemsOutput
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