interface CustomEndpointOptions
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Elasticsearch.CustomEndpointOptions |
![]() | software.amazon.awscdk.services.elasticsearch.CustomEndpointOptions |
![]() | aws_cdk.aws_elasticsearch.CustomEndpointOptions |
![]() | @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.