interface CustomEndpointOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Elasticsearch.CustomEndpointOptions |
Java | software.amazon.awscdk.services.elasticsearch.CustomEndpointOptions |
Python | aws_cdk.aws_elasticsearch.CustomEndpointOptions |
TypeScript (source) | @aws-cdk/aws-elasticsearch » CustomEndpointOptions |
⚠️ Deprecated: use opensearchservice module instead
Configures a custom domain endpoint for the ES domain.
Example
new es.Domain(this, 'Domain', {
version: es.ElasticsearchVersion.V7_7,
customEndpoint: {
domainName: 'search.example.com',
},
});
Properties
Name | Type | Description |
---|---|---|
domain | string | The custom domain name to assign. |
certificate? | ICertificate | The certificate to use. |
hosted | IHosted | The hosted zone in Route53 to create the CNAME record in. |
domainName
⚠️ Deprecated: use opensearchservice module instead
Type:
string
The custom domain name to assign.
certificate?
⚠️ Deprecated: use opensearchservice module instead
Type:
ICertificate
(optional, default: create a new one)
The certificate to use.
hostedZone?
⚠️ Deprecated: use opensearchservice module instead
Type:
IHosted
(optional, default: do not create a CNAME)
The hosted zone in Route53 to create the CNAME record in.