{ "$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-request-schema.json", "title": "UpdateElasticsearchDomainConfigRequest", "description": "Container for the parameters to the UpdateElasticsearchDomain operation. Specifies the type and number of instances in the domain cluster.", "type": "object", "properties": { "ElasticsearchClusterConfig": { "allOf": [ { "$ref": "#/components/schemas/ElasticsearchClusterConfig" }, { "description": "The type and number of instances to instantiate for the domain cluster." } ] }, "EBSOptions": { "allOf": [ { "$ref": "#/components/schemas/EBSOptions" }, { "description": "Specify the type and size of the EBS volume that you want to use. " } ] }, "SnapshotOptions": { "allOf": [ { "$ref": "#/components/schemas/SnapshotOptions" }, { "description": "Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 hours. " } ] }, "VPCOptions": { "allOf": [ { "$ref": "#/components/schemas/VPCOptions" }, { "description": "Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains" } ] }, "CognitoOptions": { "allOf": [ { "$ref": "#/components/schemas/CognitoOptions" }, { "description": "Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana." } ] }, "AdvancedOptions": { "allOf": [ { "$ref": "#/components/schemas/AdvancedOptions" }, { "description": "Modifies the advanced option to allow references to indices in an HTTP request body. Must be false when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information." } ] }, "AccessPolicies": { "allOf": [ { "$ref": "#/components/schemas/PolicyDocument" }, { "description": "IAM access policy as a JSON-formatted string." } ] }, "LogPublishingOptions": { "allOf": [ { "$ref": "#/components/schemas/LogPublishingOptions" }, { "description": "Map of LogType and LogPublishingOption, each containing options to publish a given type of Elasticsearch log." } ] }, "DomainEndpointOptions": { "allOf": [ { "$ref": "#/components/schemas/DomainEndpointOptions" }, { "description": "Options to specify configuration that will be applied to the domain endpoint." } ] }, "AdvancedSecurityOptions": { "allOf": [ { "$ref": "#/components/schemas/AdvancedSecurityOptionsInput" }, { "description": "Specifies advanced security options." } ] }, "NodeToNodeEncryptionOptions": { "allOf": [ { "$ref": "#/components/schemas/NodeToNodeEncryptionOptions" }, { "description": "Specifies the NodeToNodeEncryptionOptions." } ] }, "EncryptionAtRestOptions": { "allOf": [ { "$ref": "#/components/schemas/EncryptionAtRestOptions" }, { "description": "Specifies the Encryption At Rest Options." } ] }, "AutoTuneOptions": { "allOf": [ { "$ref": "#/components/schemas/AutoTuneOptions" }, { "description": "Specifies Auto-Tune options." } ] }, "DryRun": { "allOf": [ { "$ref": "#/components/schemas/DryRun" }, { "description": " This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return the results of validation checks without actually applying the change. This flag, when set to True, specifies the deployment mechanism through which the update shall be applied on the domain. This will not actually perform the Update. " } ] } } }