pub struct UpdateItemOutput {
pub attributes: HashMap<String, AttributeValue>,
pub consumed_capacity: Option<ConsumedCapacity>,
pub item_collection_metrics: Option<ItemCollectionMetrics>,
}Expand description
Output for the UpdateItem operation.
Fields§
§attributes: HashMap<String, AttributeValue>The attribute values as they appeared before or after the update
(depending on the ReturnValues setting).
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 UpdateItemOutput
impl Clone for UpdateItemOutput
Source§fn clone(&self) -> UpdateItemOutput
fn clone(&self) -> UpdateItemOutput
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 UpdateItemOutput
impl Debug for UpdateItemOutput
Source§impl Default for UpdateItemOutput
impl Default for UpdateItemOutput
Source§fn default() -> UpdateItemOutput
fn default() -> UpdateItemOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateItemOutput
impl<'de> Deserialize<'de> for UpdateItemOutput
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 UpdateItemOutput
impl RefUnwindSafe for UpdateItemOutput
impl Send for UpdateItemOutput
impl Sync for UpdateItemOutput
impl Unpin for UpdateItemOutput
impl UnsafeUnpin for UpdateItemOutput
impl UnwindSafe for UpdateItemOutput
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