Amazon DynamoDB · Schema

BatchGetItemOutput

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
Responses object A map of table name to a list of items
UnprocessedKeys object A map of tables and their respective keys that were not processed. Retry these using exponential backoff.
ConsumedCapacity array
View JSON Schema on GitHub

JSON Schema

dynamodb-batch-get-item-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BatchGetItemOutput",
  "type": "object",
  "properties": {
    "Responses": {
      "type": "object",
      "description": "A map of table name to a list of items"
    },
    "UnprocessedKeys": {
      "type": "object",
      "description": "A map of tables and their respective keys that were not processed. Retry these using exponential backoff."
    },
    "ConsumedCapacity": {
      "type": "array"
    }
  }
}