Amazon SimpleDB · JSON Structure

Amazon Simpledb Put Attributes Request Structure

PutAttributesRequest schema from Amazon SimpleDB API

Type: object Properties: 4 Required: 3
Cloud StorageData StorageDatabaseNoSQL

PutAttributesRequest is a JSON Structure definition published by Amazon SimpleDB, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DomainName ItemName Attributes Expected

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-structure/amazon-simpledb-put-attributes-request-structure.json",
  "name": "PutAttributesRequest",
  "description": "PutAttributesRequest schema from Amazon SimpleDB API",
  "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"
  ]
}