dynamodb_table_update
Modify a DynamoDB table by updating its attribute definitions using the AWS MCP Server. Ensure accurate and efficient schema changes for your database setup.
Instructions
Update a DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attribute_definitions | Yes | Updated attribute definitions | |
table_name | Yes | Name of the DynamoDB table |
Input Schema (JSON Schema)
{
"properties": {
"attribute_definitions": {
"description": "Updated attribute definitions",
"type": "array"
},
"table_name": {
"description": "Name of the DynamoDB table",
"type": "string"
}
},
"required": [
"table_name",
"attribute_definitions"
],
"type": "object"
}