Amazon SimpleDB · JSON Structure

Amazon Simpledb Create Domain Request Structure

CreateDomainRequest schema from Amazon SimpleDB API

Type: object Properties: 1 Required: 1
Cloud StorageData StorageDatabaseNoSQL

CreateDomainRequest is a JSON Structure definition published by Amazon SimpleDB, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DomainName

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-create-domain-request-structure.json",
  "name": "CreateDomainRequest",
  "description": "CreateDomainRequest schema from Amazon SimpleDB API",
  "properties": {
    "DomainName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'."
        }
      ]
    }
  },
  "required": [
    "DomainName"
  ]
}