Interface ICustomEndpointOptions
(deprecated) Configures a custom domain endpoint for the ES domain.
Namespace: Amazon.CDK.AWS.Elasticsearch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICustomEndpointOptions
Syntax (vb)
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.
virtual ICertificate Certificate { get; }
Property Value
Remarks
Default: - create a new one
Stability: Deprecated
DomainName
(deprecated) The custom domain name to assign.
string DomainName { get; }
Property Value
System.String
Remarks
Stability: Deprecated
HostedZone
(deprecated) The hosted zone in Route53 to create the CNAME record in.
virtual IHostedZone HostedZone { get; }
Property Value
Remarks
Default: - do not create a CNAME
Stability: Deprecated