DescribeElasticsearchDomainsRequest

Container for the parameters to the DescribeElasticsearchDomains operation. By default, the API returns the status of all Elasticsearch domains.

AnalyticsElasticsearchSearch

Properties

Name Type Description
DomainNames object
View JSON Schema on GitHub

JSON Schema

openapi-describe-elasticsearch-domains-request-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-request-schema.json",
  "title": "DescribeElasticsearchDomainsRequest",
  "description": "Container for the parameters to the <code><a>DescribeElasticsearchDomains</a></code> operation. By default, the API returns the status of all Elasticsearch domains.",
  "type": "object",
  "properties": {
    "DomainNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainNameList"
        },
        {
          "description": "The Elasticsearch domains for which you want information."
        }
      ]
    }
  },
  "required": [
    "DomainNames"
  ]
}