pub struct TransactWriteItemsOutput {
pub consumed_capacity: Vec<ConsumedCapacity>,
pub item_collection_metrics: HashMap<String, Vec<ItemCollectionMetrics>>,
}Expand description
Output for the TransactWriteItems operation.
Fields§
§consumed_capacity: Vec<ConsumedCapacity>The capacity units consumed by the operation for each table.
item_collection_metrics: HashMap<String, Vec<ItemCollectionMetrics>>Item collection metrics for the affected tables.
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
Auto Trait Implementations§
impl Freeze for TransactWriteItemsOutput
impl RefUnwindSafe for TransactWriteItemsOutput
impl Send for TransactWriteItemsOutput
impl Sync for TransactWriteItemsOutput
impl Unpin for TransactWriteItemsOutput
impl UnsafeUnpin 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