Amazon DynamoDB · Schema

UpdateItemOutput

UpdateItemOutput schema from Amazon DynamoDB API

DatabaseDocument StoreKey-ValueNoSQLServerless

Properties

Name Type Description
Attributes object A map of attribute values as they appear after the UpdateItem operation
View JSON Schema on GitHub

JSON Schema

dynamodb-openapi-update-item-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-dynamodb/refs/heads/main/json-schema/dynamodb-openapi-update-item-output-schema.json",
  "title": "UpdateItemOutput",
  "description": "UpdateItemOutput schema from Amazon DynamoDB API",
  "type": "object",
  "properties": {
    "Attributes": {
      "type": "object",
      "description": "A map of attribute values as they appear after the UpdateItem operation",
      "additionalProperties": {
        "$ref": "#/components/schemas/AttributeValue"
      }
    }
  }
}