View source: R/dynamodb_operations.R
dynamodb_transact_write_items | R Documentation |
transact_write_items
is a synchronous write operation that groups up to 100 action requests. These actions can target items in different tables, but not in different Amazon Web Services accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck
and Update
the same item. The aggregate size of the items in the transaction cannot exceed 4 MB.
See https://www.paws-r-sdk.com/docs/dynamodb_transact_write_items/ for full documentation.
dynamodb_transact_write_items(
TransactItems,
ReturnConsumedCapacity = NULL,
ReturnItemCollectionMetrics = NULL,
ClientRequestToken = NULL
)
TransactItems |
[required] An ordered array of up to 100 |
ReturnConsumedCapacity |
|
ReturnItemCollectionMetrics |
Determines whether item collection metrics are returned. If set to
|
ClientRequestToken |
Providing a 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 might not be the same. If the A client request token is valid for 10 minutes after the first request that uses it is completed. 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 might 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
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.