Amazon DynamoDB · Schema

ErrorResponse

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
__type string The exception type
message string A human-readable description of the error
Message string A human-readable description of the error (alternative casing)
View JSON Schema on GitHub

JSON Schema

dynamodb-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "__type": {
      "type": "string",
      "description": "The exception type"
    },
    "message": {
      "type": "string",
      "description": "A human-readable description of the error"
    },
    "Message": {
      "type": "string",
      "description": "A human-readable description of the error (alternative casing)"
    }
  }
}