update_capacity
Modify the read and write capacity units of a DynamoDB table to manage performance and scalability using the DynamoDB MCP Server.
Instructions
Updates the provisioned capacity of a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
readCapacity | Yes | New read capacity units | |
tableName | Yes | Name of the table | |
writeCapacity | Yes | New 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"
}