dynamodb_item_scan
Scan and retrieve items from a DynamoDB table using filter expressions and attribute values. Designed for AWS MCP Server to enable efficient data querying and management through natural language commands.
Instructions
Scan items in a DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expression_attributes | No | ||
filter_expression | No | Filter expression | |
table_name | Yes | Name of the DynamoDB table |
Input Schema (JSON Schema)
{
"properties": {
"expression_attributes": {
"properties": {
"names": {
"description": "Expression attribute names",
"type": "object"
},
"values": {
"description": "Expression attribute values",
"type": "object"
}
},
"type": "object"
},
"filter_expression": {
"description": "Filter expression",
"type": "string"
},
"table_name": {
"description": "Name of the DynamoDB table",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}