AWS MCP Server

dynamodb_batch_execute

Execute multiple PartiQL statements in a batch

Input Schema

NameRequiredDescriptionDefault
parametersYesList of parameter lists for each statement
statementsYesList 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" }