Amazon DynamoDB · Schema
ExecuteStatementInput
CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless
Properties
| Name | Type | Description |
|---|---|---|
| Statement | string | The PartiQL statement representing the operation to run |
| Parameters | array | The parameters for the PartiQL statement |
| ConsistentRead | boolean | The consistency of a read operation |
| NextToken | string | Set this value to get remaining results |
| ReturnConsumedCapacity | string | |
| Limit | integer | The maximum number of items to evaluate |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ExecuteStatementInput",
"type": "object",
"properties": {
"Statement": {
"type": "string",
"description": "The PartiQL statement representing the operation to run"
},
"Parameters": {
"type": "array",
"description": "The parameters for the PartiQL statement"
},
"ConsistentRead": {
"type": "boolean",
"description": "The consistency of a read operation"
},
"NextToken": {
"type": "string",
"description": "Set this value to get remaining results"
},
"ReturnConsumedCapacity": {
"type": "string"
},
"Limit": {
"type": "integer",
"description": "The maximum number of items to evaluate"
}
}
}