Amazon SimpleDB · JSON Structure

Amazon Simpledb Get Attributes Request Structure

GetAttributesRequest schema from Amazon SimpleDB API

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

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

Properties

DomainName ItemName AttributeNames ConsistentRead

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-get-attributes-request-structure.json",
  "name": "GetAttributesRequest",
  "description": "GetAttributesRequest 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."
        }
      ]
    },
    "AttributeNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AttributeNameList"
        },
        {
          "description": "The names of the attributes."
        }
      ]
    },
    "ConsistentRead": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If <code>true</code>, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read."
        }
      ]
    }
  },
  "required": [
    "DomainName",
    "ItemName"
  ]
}