Show / Hide Table of Contents

Interface ICustomEndpointOptions

(deprecated) Configures a custom domain endpoint for the ES domain.

Namespace: Amazon.CDK.AWS.Elasticsearch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
[Obsolete("use opensearchservice module instead")]
public interface ICustomEndpointOptions
Syntax (vb)
<Obsolete("use opensearchservice module instead")>
Public Interface ICustomEndpointOptions
Remarks

Stability: Deprecated

ExampleMetadata: infused

Examples
new Domain(this, "Domain", new DomainProps {
                 Version = ElasticsearchVersion.V7_7,
                 CustomEndpoint = new CustomEndpointOptions {
                     DomainName = "search.example.com"
                 }
             });

Synopsis

Properties

Certificate

(deprecated) The certificate to use.

DomainName

(deprecated) The custom domain name to assign.

HostedZone

(deprecated) The hosted zone in Route53 to create the CNAME record in.

Properties

Certificate

(deprecated) The certificate to use.

[Obsolete("use opensearchservice module instead")]
ICertificateRef? Certificate { get; }
Property Value

ICertificateRef

Remarks

Default: - create a new one

Stability: Deprecated

DomainName

(deprecated) The custom domain name to assign.

[Obsolete("use opensearchservice module instead")]
string DomainName { get; }
Property Value

string

Remarks

Stability: Deprecated

HostedZone

(deprecated) The hosted zone in Route53 to create the CNAME record in.

[Obsolete("use opensearchservice module instead")]
IHostedZone? HostedZone { get; }
Property Value

IHostedZone

Remarks

Default: - do not create a CNAME

Stability: Deprecated

Back to top Generated by DocFX