dynamodb_item_update
Update specific item data in a DynamoDB table by providing the table name, key, and updated item details. Part of the AWS MCP Server for managing DynamoDB operations.
Instructions
Update an item in a DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item | Yes | Updated item data | |
key | Yes | Key to identify the item | |
table_name | Yes | Name of the DynamoDB table |
Input Schema (JSON Schema)
{
"properties": {
"item": {
"description": "Updated item data",
"type": "object"
},
"key": {
"description": "Key to identify the item",
"type": "object"
},
"table_name": {
"description": "Name of the DynamoDB table",
"type": "string"
}
},
"required": [
"table_name",
"key",
"item"
],
"type": "object"
}