UpdateElasticsearchDomainConfigResponse

The result of an UpdateElasticsearchDomain request. Contains the status of the Elasticsearch domain being updated.

AnalyticsElasticsearchSearch

Properties

Name Type Description
DomainConfig object
DryRunResults object
View JSON Schema on GitHub

JSON Schema

openapi-update-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-update-elasticsearch-domain-config-response-schema.json",
  "title": "UpdateElasticsearchDomainConfigResponse",
  "description": "The result of an <code>UpdateElasticsearchDomain</code> request. Contains the status of the Elasticsearch domain being updated.",
  "type": "object",
  "properties": {
    "DomainConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ElasticsearchDomainConfig"
        },
        {
          "description": "The status of the updated Elasticsearch domain. "
        }
      ]
    },
    "DryRunResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DryRunResults"
        },
        {
          "description": "Contains result of DryRun. "
        }
      ]
    }
  },
  "required": [
    "DomainConfig"
  ]
}