pub struct PutItemOutput {
pub attributes: HashMap<String, AttributeValue>,
pub consumed_capacity: Option<ConsumedCapacity>,
pub item_collection_metrics: Option<ItemCollectionMetrics>,
}Expand description
Output for the PutItem operation.
Fields§
§attributes: HashMap<String, AttributeValue>The attribute values as they appeared before the PutItem operation
(only returned when ReturnValues is specified).
consumed_capacity: Option<ConsumedCapacity>The capacity units consumed by the operation.
item_collection_metrics: Option<ItemCollectionMetrics>Information about item collections modified by the operation.
Trait Implementations§
Source§impl Clone for PutItemOutput
impl Clone for PutItemOutput
Source§fn clone(&self) -> PutItemOutput
fn clone(&self) -> PutItemOutput
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 PutItemOutput
impl Debug for PutItemOutput
Source§impl Default for PutItemOutput
impl Default for PutItemOutput
Source§fn default() -> PutItemOutput
fn default() -> PutItemOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutItemOutput
impl<'de> Deserialize<'de> for PutItemOutput
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 PutItemOutput
impl RefUnwindSafe for PutItemOutput
impl Send for PutItemOutput
impl Sync for PutItemOutput
impl Unpin for PutItemOutput
impl UnsafeUnpin for PutItemOutput
impl UnwindSafe for PutItemOutput
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