get-item
Retrieve a specific item from a DynamoDB table using a defined key in JSON format. Simplify querying and access data directly from AWS DynamoDB databases.
Instructions
Get an item from a DynamoDB table based on a specific key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Item key (JSON format) | |
tableName | Yes | Table name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"additionalProperties": {},
"description": "Item key (JSON format)",
"type": "object"
},
"tableName": {
"description": "Table name",
"type": "string"
}
},
"required": [
"tableName",
"key"
],
"type": "object"
}