You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticsearchService::Types::DomainEndpointOptions

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DomainEndpointOptions as input to an Aws::Client method, you can use a vanilla Hash:

{
  enforce_https: false,
  tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
  custom_endpoint_enabled: false,
  custom_endpoint: "DomainNameFqdn",
  custom_endpoint_certificate_arn: "ARN",
}

Options to configure endpoint for the Elasticsearch domain.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#custom_endpointString

Specify the fully qualified domain for your custom endpoint.

Returns:

  • (String)

    Specify the fully qualified domain for your custom endpoint.

#custom_endpoint_certificate_arnString

Specify ACM certificate ARN for your custom endpoint.

Returns:

  • (String)

    Specify ACM certificate ARN for your custom endpoint.

#custom_endpoint_enabledBoolean

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

Returns:

  • (Boolean)

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

#enforce_httpsBoolean

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

Returns:

  • (Boolean)

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

#tls_security_policyString

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

Possible values:

  • Policy-Min-TLS-1-0-2019-07
  • Policy-Min-TLS-1-2-2019-07

Returns:

  • (String)

    Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.