[][src]Struct rusoto_dynamodb::BatchGetItemOutput

pub struct BatchGetItemOutput {
    pub consumed_capacity: Option<Vec<ConsumedCapacity>>,
    pub responses: Option<HashMap<String, Vec<HashMap<String, AttributeValue>>>>,
    pub unprocessed_keys: Option<HashMap<String, KeysAndAttributes>>,
}

Represents the output of a BatchGetItem operation.

Fields

consumed_capacity: Option<Vec<ConsumedCapacity>>

The read capacity units consumed by the entire BatchGetItem operation.

Each element consists of:

responses: Option<HashMap<String, Vec<HashMap<String, AttributeValue>>>>

A map of table name to a list of items. Each object in Responses consists of a table name, along with a map of attribute data consisting of the data type and attribute value.

unprocessed_keys: Option<HashMap<String, KeysAndAttributes>>

A map of tables and their respective keys that were not processed with the current response. The UnprocessedKeys value is in the same form as RequestItems, so the value can be provided directly to a subsequent BatchGetItem operation. For more information, see RequestItems in the Request Parameters section.

Each element consists of:

If there are no unprocessed keys remaining, the response contains an empty UnprocessedKeys map.

Trait Implementations

impl PartialEq<BatchGetItemOutput> for BatchGetItemOutput[src]

impl Default for BatchGetItemOutput[src]

impl Clone for BatchGetItemOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BatchGetItemOutput[src]

impl<'de> Deserialize<'de> for BatchGetItemOutput[src]

Auto Trait Implementations

impl Send for BatchGetItemOutput

impl Sync for BatchGetItemOutput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self