DescribeElasticsearchDomainConfigResponse

The result of a DescribeElasticsearchDomainConfig request. Contains the configuration information of the requested domain.

AnalyticsElasticsearchSearch

Properties

Name Type Description
DomainConfig object
View JSON Schema on GitHub

JSON Schema

openapi-describe-elasticsearch-domain-config-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-config-response-schema.json",
  "title": "DescribeElasticsearchDomainConfigResponse",
  "description": "The result of a <code>DescribeElasticsearchDomainConfig</code> request. Contains the configuration information of the requested domain.",
  "type": "object",
  "properties": {
    "DomainConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ElasticsearchDomainConfig"
        },
        {
          "description": "The configuration information of the domain requested in the <code>DescribeElasticsearchDomainConfig</code> request."
        }
      ]
    }
  },
  "required": [
    "DomainConfig"
  ]
}