pub struct BatchGetItemInput {
pub request_items: HashMap<String, KeysAndAttributes>,
pub return_consumed_capacity: Option<ReturnConsumedCapacity>,
}Expand description
Input for the BatchGetItem operation.
Fields§
§request_items: HashMap<String, KeysAndAttributes>A map of one or more table names to the corresponding keys and projection expressions to retrieve.
return_consumed_capacity: Option<ReturnConsumedCapacity>Determines the level of detail about provisioned throughput consumption.
Trait Implementations§
Source§impl Clone for BatchGetItemInput
impl Clone for BatchGetItemInput
Source§fn clone(&self) -> BatchGetItemInput
fn clone(&self) -> BatchGetItemInput
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 BatchGetItemInput
impl Debug for BatchGetItemInput
Source§impl Default for BatchGetItemInput
impl Default for BatchGetItemInput
Source§fn default() -> BatchGetItemInput
fn default() -> BatchGetItemInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetItemInput
impl<'de> Deserialize<'de> for BatchGetItemInput
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 BatchGetItemInput
impl RefUnwindSafe for BatchGetItemInput
impl Send for BatchGetItemInput
impl Sync for BatchGetItemInput
impl Unpin for BatchGetItemInput
impl UnsafeUnpin for BatchGetItemInput
impl UnwindSafe for BatchGetItemInput
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