Class BatchExecuteStatementRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Container for the parameters to the BatchExecuteStatement operation. This operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL. Each read statement in a
BatchExecuteStatement
must specify
an equality condition on all key attributes. This enforces that each SELECT
statement in a batch returns at most a single item.
note
The entire batch must consist of either read statements or write statements, you cannot mix both in one batch.
A HTTP 200 response does not mean that all statements in the BatchExecuteStatement succeeded. Error details for individual statements can be found under the Error field of the
BatchStatementResponse
for each statement.
public class BatchExecuteStatementRequest : AmazonDynamoDBRequest
- Inheritance
-
BatchExecuteStatementRequest
Constructors
BatchExecuteStatementRequest()
public BatchExecuteStatementRequest()
Properties
ReturnConsumedCapacity
Gets and sets the property ReturnConsumedCapacity.
public ReturnConsumedCapacity ReturnConsumedCapacity { get; set; }
Property Value
Statements
Gets and sets the property Statements.
The list of PartiQL statements representing the batch to run.
public List<BatchStatementRequest> Statements { get; set; }