dynamodb_item_delete
Remove specific items from a DynamoDB table using table name and key. Simplify data management with direct deletion via the AWS MCP Server.
Instructions
Delete an item from a DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Key to identify the item | |
table_name | Yes | Name of the DynamoDB table |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Key to identify the item",
"type": "object"
},
"table_name": {
"description": "Name of the DynamoDB table",
"type": "string"
}
},
"required": [
"table_name",
"key"
],
"type": "object"
}