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