dynamodb_table_create
Create a DynamoDB table by specifying the table name, key schema, and attribute definitions. Designed for AWS MCP Server to streamline table setup via natural language commands.
Instructions
Create a new DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attribute_definitions | Yes | Attribute definitions for table creation | |
key_schema | Yes | Key schema for table creation | |
table_name | Yes | Name of the DynamoDB table |
Input Schema (JSON Schema)
{
"properties": {
"attribute_definitions": {
"description": "Attribute definitions for table creation",
"type": "array"
},
"key_schema": {
"description": "Key schema for table creation",
"type": "array"
},
"table_name": {
"description": "Name of the DynamoDB table",
"type": "string"
}
},
"required": [
"table_name",
"key_schema",
"attribute_definitions"
],
"type": "object"
}