AWS MCP Server

dynamodb_batch_execute

Process multiple PartiQL statements simultaneously on DynamoDB to execute batch operations efficiently. Simplify handling large datasets with structured input parameters and queries.

Instructions

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" }
ID: v69k6ch2gh