This operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL
Source:R/dynamodb_operations.R
dynamodb_batch_execute_statement.RdThis operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL. Each read statement in a batch_execute_statement must specify an equality condition on all key attributes. This enforces that each SELECT statement in a batch returns at most a single item. For more information, see Running batch operations with PartiQL for DynamoDB .
See https://www.paws-r-sdk.com/docs/dynamodb_batch_execute_statement/ for full documentation.
Arguments
- Statements
[required] The list of PartiQL statements representing the batch to run.
- ReturnConsumedCapacity
Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response:
INDEXES- The response includes the aggregateConsumedCapacityfor the operation, together withConsumedCapacityfor each table and secondary index that was accessed.Note that some operations, such as
get_itemandbatch_get_item, do not access any indexes at all. In these cases, specifyingINDEXESwill only returnConsumedCapacityinformation for table(s).TOTAL- The response includes only the aggregateConsumedCapacityfor the operation.NONE- NoConsumedCapacitydetails are included in the response.