@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-20T22:20:02.089Z")
public interface VpcEndpointServiceDomainNameProps
Example:
import software.amazon.awscdk.services.route53.HostedZone; import software.amazon.awscdk.services.route53.VpcEndpointServiceDomainName; HostedZone zone; VpcEndpointService vpces; VpcEndpointServiceDomainName.Builder.create(this, "EndpointDomain") .endpointService(vpces) .domainName("my-stuff.aws-cdk.dev") .publicHostedZone(zone) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
VpcEndpointServiceDomainNameProps.Builder
A builder for
VpcEndpointServiceDomainNameProps |
static class |
VpcEndpointServiceDomainNameProps.Jsii$Proxy
An implementation for
VpcEndpointServiceDomainNameProps |
Modifier and Type | Method and Description |
---|---|
static VpcEndpointServiceDomainNameProps.Builder |
builder() |
java.lang.String |
getDomainName()
The domain name to use.
|
IVpcEndpointService |
getEndpointService()
The VPC Endpoint Service to configure Private DNS for.
|
IPublicHostedZone |
getPublicHostedZone()
The public hosted zone to use for the domain.
|
java.lang.String getDomainName()
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.
https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
IVpcEndpointService getEndpointService()
IPublicHostedZone getPublicHostedZone()
static VpcEndpointServiceDomainNameProps.Builder builder()