Struct aws_sdk_dynamodb::input::TransactGetItemsInput
source · #[non_exhaustive]pub struct TransactGetItemsInput { /* private fields */ }
Implementations§
source§impl TransactGetItemsInput
impl TransactGetItemsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TransactGetItems, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TransactGetItems, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<TransactGetItems
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TransactGetItemsInput
.
source§impl TransactGetItemsInput
impl TransactGetItemsInput
sourcepub fn transact_items(&self) -> Option<&[TransactGetItem]>
pub fn transact_items(&self) -> Option<&[TransactGetItem]>
An ordered array of up to 100 TransactGetItem
objects, each of which contains a Get
structure.
sourcepub fn return_consumed_capacity(&self) -> Option<&ReturnConsumedCapacity>
pub fn return_consumed_capacity(&self) -> Option<&ReturnConsumedCapacity>
A value of TOTAL
causes consumed capacity information to be returned, and a value of NONE
prevents that information from being returned. No other value is valid.
Trait Implementations§
source§impl Clone for TransactGetItemsInput
impl Clone for TransactGetItemsInput
source§fn clone(&self) -> TransactGetItemsInput
fn clone(&self) -> TransactGetItemsInput
Returns a copy 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 TransactGetItemsInput
impl Debug for TransactGetItemsInput
source§impl PartialEq<TransactGetItemsInput> for TransactGetItemsInput
impl PartialEq<TransactGetItemsInput> for TransactGetItemsInput
source§fn eq(&self, other: &TransactGetItemsInput) -> bool
fn eq(&self, other: &TransactGetItemsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.