Amazon SimpleDB · Schema

PutAttributesRequest

PutAttributesRequest schema from Amazon SimpleDB API

Cloud StorageData StorageDatabaseNoSQL

Properties

Name Type Description
DomainName object
ItemName object
Attributes object
Expected object
View JSON Schema on GitHub

JSON Schema

amazon-simpledb-put-attributes-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-schema/amazon-simpledb-put-attributes-request-schema.json",
  "title": "PutAttributesRequest",
  "description": "PutAttributesRequest schema from Amazon SimpleDB API",
  "type": "object",
  "properties": {
    "DomainName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the domain in which to perform the operation."
        }
      ]
    },
    "ItemName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the item."
        }
      ]
    },
    "Attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReplaceableAttributeList"
        },
        {
          "description": "The list of attributes."
        }
      ]
    },
    "Expected": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateCondition"
        },
        {
          "description": "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated."
        }
      ]
    }
  },
  "required": [
    "DomainName",
    "ItemName",
    "Attributes"
  ]
}