Amazon CloudSearch · Schema

CreateDomainRequest

CreateDomainRequest schema

CloudSearchSearchFull-Text SearchManaged

Properties

Name Type Description
DomainName string A name for the domain you are creating.
View JSON Schema on GitHub

JSON Schema

cloudsearch-create-domain-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudsearch/refs/heads/main/json-schema/cloudsearch-create-domain-request-schema.json",
  "title": "CreateDomainRequest",
  "description": "CreateDomainRequest schema",
  "type": "object",
  "properties": {
    "DomainName": {
      "type": "string",
      "description": "A name for the domain you are creating.",
      "minLength": 3,
      "maxLength": 28
    }
  },
  "required": [
    "DomainName"
  ]
}