dynamodb_batch_execute
Execute multiple PartiQL statements in a single batch with specified parameters, simplifying DynamoDB operations for streamlined data management.
Instructions
Execute multiple PartiQL statements in a batch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | Yes | List of parameter lists for each statement | |
statements | Yes | List of PartiQL statements to execute |
Input Schema (JSON Schema)
{
"properties": {
"parameters": {
"description": "List of parameter lists for each statement",
"items": {
"type": "array"
},
"type": "array"
},
"statements": {
"description": "List of PartiQL statements to execute",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"statements",
"parameters"
],
"type": "object"
}