aws-cdk-lib.aws_route53.VpcEndpointServiceDomainNameProps

interface VpcEndpointServiceDomainNameProps

LanguageType name
.NETAmazon.CDK.AWS.Route53.VpcEndpointServiceDomainNameProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsroute53#VpcEndpointServiceDomainNameProps
Javasoftware.amazon.awscdk.services.route53.VpcEndpointServiceDomainNameProps
Pythonaws_cdk.aws_route53.VpcEndpointServiceDomainNameProps
TypeScript (source)aws-cdk-lib » aws_route53 » VpcEndpointServiceDomainNameProps

Properties to configure a VPC Endpoint Service domain name.

Example

import { HostedZone, VpcEndpointServiceDomainName } from 'aws-cdk-lib/aws-route53';
declare const zone: HostedZone;
declare const vpces: ec2.VpcEndpointService;

new VpcEndpointServiceDomainName(this, 'EndpointDomain', {
  endpointService: vpces,
  domainName: 'my-stuff.aws-cdk.dev',
  publicHostedZone: zone,
});

Properties

NameTypeDescription
domainNamestringThe domain name to use.
endpointServiceIVpcEndpointServiceThe VPC Endpoint Service to configure Private DNS for.
publicHostedZoneIPublicHostedZoneThe public hosted zone to use for the domain.

domainName

Type: string

The domain name to use.

This domain name must be owned by this account (registered through Route53), or delegated to this account. Domain ownership will be verified by AWS before private DNS can be used.

See also: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html


endpointService

Type: IVpcEndpointService

The VPC Endpoint Service to configure Private DNS for.


publicHostedZone

Type: IPublicHostedZone

The public hosted zone to use for the domain.