dynamodb_batch_get
Retrieve multiple items concurrently from one or more DynamoDB tables by specifying table names and keys in a single request, optimizing data fetching efficiency.
Instructions
Batch get multiple items from DynamoDB tables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
request_items | Yes | Map of table names to keys to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"request_items": {
"additionalProperties": {
"properties": {
"ConsistentRead": {
"type": "boolean"
},
"Keys": {
"items": {
"type": "object"
},
"type": "array"
},
"ProjectionExpression": {
"type": "string"
}
},
"required": [
"Keys"
],
"type": "object"
},
"description": "Map of table names to keys to retrieve",
"type": "object"
}
},
"required": [
"request_items"
],
"type": "object"
}