[−][src]Struct rusoto_dynamodb::BatchGetItemOutput
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:
-
TableName- The table that consumed the provisioned throughput. -
CapacityUnits- The total number of capacity units consumed.
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:
-
Keys- An array of primary key attribute values that define specific items in the table. -
ProjectionExpression- One or more attributes to be retrieved from the table or index. By default, all attributes are returned. If a requested attribute is not found, it does not appear in the result. -
ConsistentRead- The consistency of a read operation. If set totrue, then a strongly consistent read is used; otherwise, an eventually consistent read is used.
If there are no unprocessed keys remaining, the response contains an empty UnprocessedKeys map.
Trait Implementations
impl PartialEq<BatchGetItemOutput> for BatchGetItemOutput[src]
fn eq(&self, other: &BatchGetItemOutput) -> bool[src]
fn ne(&self, other: &BatchGetItemOutput) -> bool[src]
impl Default for BatchGetItemOutput[src]
fn default() -> BatchGetItemOutput[src]
impl Clone for BatchGetItemOutput[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self