[−][src]Struct rusoto_dynamodb::TransactWriteItemsInput
Fields
client_request_token: Option<String>
Providing a ClientRequestToken
makes the call to TransactWriteItems
idempotent, meaning that multiple identical calls have the same effect as one single call.
Although multiple identical calls using the same client request token produce the same result on the server (no side effects), the responses to the calls may not be the same. If the ReturnConsumedCapacity>
parameter is set, then the initial TransactWriteItems
call returns the amount of write capacity units consumed in making the changes, and subsequent TransactWriteItems
calls with the same client token return the amount of read capacity units consumed in reading the item.
A client request token is valid for 10 minutes after the first request that uses it completes. After 10 minutes, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 10 minutes or the result may not be idempotent.
If you submit a request with the same client token but a change in other parameters within the 10 minute idempotency window, DynamoDB returns an IdempotentParameterMismatch
exception.
return_consumed_capacity: Option<String>
return_item_collection_metrics: Option<String>
Determines whether item collection metrics are returned. If set to SIZE
, the response includes statistics about item collections (if any), that were modified during the operation and are returned in the response. If set to NONE
(the default), no statistics are returned.
transact_items: Vec<TransactWriteItem>
An ordered array of up to 10 TransactWriteItem
objects, each of which contains a ConditionCheck
, Put
, Update
, or Delete
object. These can operate on items in different tables, but the tables must reside in the same AWS account and region, and no two of them can operate on the same item.
Trait Implementations
impl PartialEq<TransactWriteItemsInput> for TransactWriteItemsInput
[src]
fn eq(&self, other: &TransactWriteItemsInput) -> bool
[src]
fn ne(&self, other: &TransactWriteItemsInput) -> bool
[src]
impl Default for TransactWriteItemsInput
[src]
fn default() -> TransactWriteItemsInput
[src]
impl Clone for TransactWriteItemsInput
[src]
fn clone(&self) -> TransactWriteItemsInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for TransactWriteItemsInput
[src]
impl Serialize for TransactWriteItemsInput
[src]
Auto Trait Implementations
impl Send for TransactWriteItemsInput
impl Sync for TransactWriteItemsInput
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> Erased for T
impl<T> Same for T
type Output = T
Should always be Self