{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-domain-endpoint-options-schema.json", "title": "DomainEndpointOptions", "description": "Options to configure endpoint for the Elasticsearch domain.", "type": "object", "properties": { "EnforceHTTPS": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain." } ] }, "TLSSecurityPolicy": { "allOf": [ { "$ref": "#/components/schemas/TLSSecurityPolicy" }, { "description": "Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.
It can be one of the following values: " } ] }, "CustomEndpointEnabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Specify if custom endpoint should be enabled for the Elasticsearch domain." } ] }, "CustomEndpoint": { "allOf": [ { "$ref": "#/components/schemas/DomainNameFqdn" }, { "description": "Specify the fully qualified domain for your custom endpoint." } ] }, "CustomEndpointCertificateArn": { "allOf": [ { "$ref": "#/components/schemas/ARN" }, { "description": "Specify ACM certificate ARN for your custom endpoint." } ] } } }