DescribeElasticsearchDomainResponse

The result of a DescribeElasticsearchDomain request. Contains the status of the domain specified in the request.

AnalyticsElasticsearchSearch

Properties

Name Type Description
DomainStatus object
View JSON Schema on GitHub

JSON Schema

openapi-describe-elasticsearch-domain-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-describe-elasticsearch-domain-response-schema.json",
  "title": "DescribeElasticsearchDomainResponse",
  "description": "The result of a <code>DescribeElasticsearchDomain</code> request. Contains the status of the domain specified in the request.",
  "type": "object",
  "properties": {
    "DomainStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ElasticsearchDomainStatus"
        },
        {
          "description": "The current status of the Elasticsearch domain."
        }
      ]
    }
  },
  "required": [
    "DomainStatus"
  ]
}