Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DomainEndpointOptions

import type { DomainEndpointOptions } from "https://aws-api.deno.dev/v0.3/services/es.ts?docs=full";

Options to configure endpoint for the Elasticsearch domain.

interface DomainEndpointOptions {
CustomEndpoint?: string | null;
CustomEndpointCertificateArn?: string | null;
CustomEndpointEnabled?: boolean | null;
EnforceHTTPS?: boolean | null;
TLSSecurityPolicy?: TLSSecurityPolicy | null;
}

§Properties

§
CustomEndpoint?: string | null
[src]

Specify the fully qualified domain for your custom endpoint.

§
CustomEndpointCertificateArn?: string | null
[src]

Specify ACM certificate ARN for your custom endpoint.

§
CustomEndpointEnabled?: boolean | null
[src]

Specify if custom endpoint should be enabled for the Elasticsearch domain.

§
EnforceHTTPS?: boolean | null
[src]

Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

§
TLSSecurityPolicy?: TLSSecurityPolicy | null
[src]

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:

  • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
  • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2