DynamoDB MCP Server

update_capacity

Updates the provisioned capacity of a table

Input Schema

NameRequiredDescriptionDefault
readCapacityYesNew read capacity units
tableNameYesName of the table
writeCapacityYesNew write capacity units

Input Schema (JSON Schema)

{ "properties": { "readCapacity": { "description": "New read capacity units", "type": "number" }, "tableName": { "description": "Name of the table", "type": "string" }, "writeCapacity": { "description": "New write capacity units", "type": "number" } }, "required": [ "tableName", "readCapacity", "writeCapacity" ], "type": "object" }