interface CustomEndpointOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.OpenSearchService.CustomEndpointOptions |
![]() | software.amazon.awscdk.services.opensearchservice.CustomEndpointOptions |
![]() | aws_cdk.aws_opensearchservice.CustomEndpointOptions |
![]() | @aws-cdk/aws-opensearchservice » CustomEndpointOptions |
Configures a custom domain endpoint for the Amazon OpenSearch Service domain.
Example
new opensearch.Domain(this, 'Domain', {
version: opensearch.EngineVersion.OPENSEARCH_1_0,
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
Type:
string
The custom domain name to assign.
certificate?
Type:
ICertificate
(optional, default: create a new one)
The certificate to use.
hostedZone?
Type:
IHosted
(optional, default: do not create a CNAME)
The hosted zone in Route53 to create the CNAME record in.