DescribeElasticsearchDomainsResponse

The result of a DescribeElasticsearchDomains request. Contains the status of the specified domains or all domains owned by the account.

AnalyticsElasticsearchSearch

Properties

Name Type Description
DomainStatusList object
View JSON Schema on GitHub

JSON Schema

openapi-describe-elasticsearch-domains-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-domains-response-schema.json",
  "title": "DescribeElasticsearchDomainsResponse",
  "description": "The result of a <code>DescribeElasticsearchDomains</code> request. Contains the status of the specified domains or all domains owned by the account.",
  "type": "object",
  "properties": {
    "DomainStatusList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ElasticsearchDomainStatusList"
        },
        {
          "description": "The status of the domains requested in the <code>DescribeElasticsearchDomains</code> request."
        }
      ]
    }
  },
  "required": [
    "DomainStatusList"
  ]
}