pub struct BatchGetItemOutput {
pub responses: HashMap<String, Vec<HashMap<String, AttributeValue>>>,
pub unprocessed_keys: HashMap<String, KeysAndAttributes>,
pub consumed_capacity: Vec<ConsumedCapacity>,
}Expand description
Output for the BatchGetItem operation.
Fields§
§responses: HashMap<String, Vec<HashMap<String, AttributeValue>>>A map of table names to the items retrieved from each table.
unprocessed_keys: HashMap<String, KeysAndAttributes>A map of tables and their respective keys that were not processed. Use
these values as RequestItems in a subsequent BatchGetItem call.
consumed_capacity: Vec<ConsumedCapacity>The capacity units consumed by the operation for each table.
Trait Implementations§
Source§impl Clone for BatchGetItemOutput
impl Clone for BatchGetItemOutput
Source§fn clone(&self) -> BatchGetItemOutput
fn clone(&self) -> BatchGetItemOutput
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 BatchGetItemOutput
impl Debug for BatchGetItemOutput
Source§impl Default for BatchGetItemOutput
impl Default for BatchGetItemOutput
Source§fn default() -> BatchGetItemOutput
fn default() -> BatchGetItemOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetItemOutput
impl<'de> Deserialize<'de> for BatchGetItemOutput
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 BatchGetItemOutput
impl RefUnwindSafe for BatchGetItemOutput
impl Send for BatchGetItemOutput
impl Sync for BatchGetItemOutput
impl Unpin for BatchGetItemOutput
impl UnsafeUnpin for BatchGetItemOutput
impl UnwindSafe for BatchGetItemOutput
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