View source: R/dynamodb_operations.R
dynamodb_batch_write_item | R Documentation |
The batch_write_item
operation puts or deletes multiple items in one or more tables. A single call to batch_write_item
can transmit up to 16MB of data over the network, consisting of up to 25 item put or delete operations. While individual items can be up to 400 KB once stored, it's important to note that an item's representation might be greater than 400KB while being sent in DynamoDB's JSON format for the API call. For more details on this distinction, see Naming Rules and Data Types.
See https://www.paws-r-sdk.com/docs/dynamodb_batch_write_item/ for full documentation.
dynamodb_batch_write_item(
RequestItems,
ReturnConsumedCapacity = NULL,
ReturnItemCollectionMetrics = NULL
)
RequestItems |
[required] A map of one or more table names or table ARNs and, for each table, a
list of operations to be performed (
|
ReturnConsumedCapacity |
|
ReturnItemCollectionMetrics |
Determines whether item collection metrics are returned. If set to
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.