dynamodb_create_table
Create a DynamoDB table in LocalStack. Define table name, partition key, and optional sort key with types. Choose billing mode and key attribute types (string, number, binary).
Instructions
Create a new DynamoDB table in LocalStack
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sortKey | No | Sort key attribute name | |
| tableName | Yes | Table name | |
| billingMode | No | Billing mode (default: PAY_PER_REQUEST) | |
| sortKeyType | No | Sort key type | |
| partitionKey | Yes | Partition key attribute name | |
| partitionKeyType | Yes | Partition key type: S (String), N (Number), B (Binary) |