@Stability(value=Stable)
See: Description
Interface | Description |
---|---|
AaaaRecordProps |
Construction properties for a AaaaRecord.
|
AliasRecordTargetConfig |
Represents the properties of an alias target destination.
|
ARecordProps |
Construction properties for a ARecord.
|
CaaAmazonRecordProps |
Construction properties for a CaaAmazonRecord.
|
CaaRecordProps |
Construction properties for a CaaRecord.
|
CaaRecordValue |
Properties for a CAA record value.
|
CfnCidrCollection.LocationProperty |
Specifies the list of CIDR blocks for a CIDR location.
|
CfnCidrCollectionProps |
Properties for defining a `CfnCidrCollection`.
|
CfnDNSSECProps |
Properties for defining a `CfnDNSSEC`.
|
CfnHealthCheck.AlarmIdentifierProperty |
A complex type that identifies the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether the specified health check is healthy.
|
CfnHealthCheck.HealthCheckConfigProperty |
A complex type that contains information about the health check.
|
CfnHealthCheck.HealthCheckTagProperty |
The `HealthCheckTag` property describes one key-value pair that is associated with an `AWS::Route53::HealthCheck` resource.
|
CfnHealthCheckProps |
Properties for defining a `CfnHealthCheck`.
|
CfnHostedZone.HostedZoneConfigProperty |
A complex type that contains an optional comment about your hosted zone.
|
CfnHostedZone.HostedZoneTagProperty |
A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
|
CfnHostedZone.QueryLoggingConfigProperty |
A complex type that contains information about a configuration for DNS query logging.
|
CfnHostedZone.VPCProperty |
*Private hosted zones only:* A complex type that contains information about an Amazon VPC.
|
CfnHostedZoneProps |
Properties for defining a `CfnHostedZone`.
|
CfnKeySigningKeyProps |
Properties for defining a `CfnKeySigningKey`.
|
CfnRecordSet.AliasTargetProperty |
*Alias records only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
|
CfnRecordSet.CidrRoutingConfigProperty |
The object that is specified in resource record set object when you are linking a resource record set to a CIDR location.
|
CfnRecordSet.GeoLocationProperty |
A complex type that contains information about a geographic location.
|
CfnRecordSetGroup.AliasTargetProperty |
*Alias records only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
|
CfnRecordSetGroup.CidrRoutingConfigProperty |
The object that is specified in resource record set object when you are linking a resource record set to a CIDR location.
|
CfnRecordSetGroup.GeoLocationProperty |
A complex type that contains information about a geographic location.
|
CfnRecordSetGroup.RecordSetProperty |
Information about one record that you want to create.
|
CfnRecordSetGroupProps |
Properties for defining a `CfnRecordSetGroup`.
|
CfnRecordSetProps |
Properties for defining a `CfnRecordSet`.
|
CnameRecordProps |
Construction properties for a CnameRecord.
|
CommonHostedZoneProps |
Common properties to create a Route 53 hosted zone.
|
CrossAccountZoneDelegationRecordProps |
Construction properties for a CrossAccountZoneDelegationRecord.
|
DsRecordProps |
Construction properties for a DSRecord.
|
HostedZoneAttributes |
Reference to a hosted zone.
|
HostedZoneProps |
Properties of a new hosted zone.
|
HostedZoneProviderProps |
Zone properties for looking up the Hosted Zone.
|
IAliasRecordTarget |
Classes that are valid alias record targets, like CloudFront distributions and load balancers, should implement this interface.
|
IAliasRecordTarget.Jsii$Default |
Internal default implementation for
IAliasRecordTarget . |
IHostedZone |
Imported or created hosted zone.
|
IHostedZone.Jsii$Default |
Internal default implementation for
IHostedZone . |
IPrivateHostedZone |
Represents a Route 53 private hosted zone.
|
IPrivateHostedZone.Jsii$Default |
Internal default implementation for
IPrivateHostedZone . |
IPublicHostedZone |
Represents a Route 53 public hosted zone.
|
IPublicHostedZone.Jsii$Default |
Internal default implementation for
IPublicHostedZone . |
IRecordSet |
A record set.
|
IRecordSet.Jsii$Default |
Internal default implementation for
IRecordSet . |
MxRecordProps |
Construction properties for a MxRecord.
|
MxRecordValue |
Properties for a MX record value.
|
NsRecordProps |
Construction properties for a NSRecord.
|
PrivateHostedZoneProps |
Properties to create a Route 53 private hosted zone.
|
PublicHostedZoneAttributes |
Reference to a public hosted zone.
|
PublicHostedZoneProps |
Construction properties for a PublicHostedZone.
|
RecordSetOptions |
Options for a RecordSet.
|
RecordSetProps |
Construction properties for a RecordSet.
|
SrvRecordProps |
Construction properties for a SrvRecord.
|
SrvRecordValue |
Properties for a SRV record value.
|
TxtRecordProps |
Construction properties for a TxtRecord.
|
VpcEndpointServiceDomainNameProps |
Properties to configure a VPC Endpoint Service domain name.
|
ZoneDelegationOptions |
Options available when creating a delegation relationship from one PublicHostedZone to another.
|
ZoneDelegationRecordProps |
Construction properties for a ZoneDelegationRecord.
|
Enum | Description |
---|---|
CaaTag |
The CAA tag.
|
RecordType |
The record type.
|
---
To add a public hosted zone:
PublicHostedZone.Builder.create(this, "HostedZone") .zoneName("fully.qualified.domain.com") .build();
To add a private hosted zone, use PrivateHostedZone
. Note that
enableDnsHostnames
and enableDnsSupport
must have been enabled for the
VPC you're configuring for private hosted zones.
Vpc vpc; PrivateHostedZone zone = PrivateHostedZone.Builder.create(this, "HostedZone") .zoneName("fully.qualified.domain.com") .vpc(vpc) .build();
Additional VPCs can be added with zone.addVpc()
.
To add a TXT record to your zone:
HostedZone myZone; TxtRecord.Builder.create(this, "TXTRecord") .zone(myZone) .recordName("_foo") // If the name ends with a ".", it will be used as-is; // if it ends with a "." followed by the zone name, a trailing "." will be added automatically; // otherwise, a ".", the zone name, and a trailing "." will be added automatically. // Defaults to zone root if not specified. .values(List.of("Bar!", "Baz?")) .ttl(Duration.minutes(90)) .build();
To add a NS record to your zone:
HostedZone myZone; NsRecord.Builder.create(this, "NSRecord") .zone(myZone) .recordName("foo") .values(List.of("ns-1.awsdns.co.uk.", "ns-2.awsdns.com.")) .ttl(Duration.minutes(90)) .build();
To add a DS record to your zone:
HostedZone myZone; DsRecord.Builder.create(this, "DSRecord") .zone(myZone) .recordName("foo") .values(List.of("12345 3 1 123456789abcdef67890123456789abcdef67890")) .ttl(Duration.minutes(90)) .build();
To add an A record to your zone:
HostedZone myZone; ARecord.Builder.create(this, "ARecord") .zone(myZone) .target(RecordTarget.fromIpAddresses("1.2.3.4", "5.6.7.8")) .build();
To add an A record for an EC2 instance with an Elastic IP (EIP) to your zone:
Instance instance; HostedZone myZone; CfnEIP elasticIp = CfnEIP.Builder.create(this, "EIP") .domain("vpc") .instanceId(instance.getInstanceId()) .build(); ARecord.Builder.create(this, "ARecord") .zone(myZone) .target(RecordTarget.fromIpAddresses(elasticIp.getRef())) .build();
To add an AAAA record pointing to a CloudFront distribution:
import software.amazon.awscdk.services.cloudfront.*; HostedZone myZone; CloudFrontWebDistribution distribution; AaaaRecord.Builder.create(this, "Alias") .zone(myZone) .target(RecordTarget.fromAlias(new CloudFrontTarget(distribution))) .build();
Constructs are available for A, AAAA, CAA, CNAME, MX, NS, SRV and TXT records.
Use the CaaAmazonRecord
construct to easily restrict certificate authorities
allowed to issue certificates for a domain to Amazon only.
To add a NS record to a HostedZone in different account you can do the following:
In the account containing the parent hosted zone:
PublicHostedZone parentZone = PublicHostedZone.Builder.create(this, "HostedZone") .zoneName("someexample.com") .crossAccountZoneDelegationPrincipal(new AccountPrincipal("12345678901")) .crossAccountZoneDelegationRoleName("MyDelegationRole") .build();
In the account containing the child zone to be delegated:
PublicHostedZone subZone = PublicHostedZone.Builder.create(this, "SubZone") .zoneName("sub.someexample.com") .build(); // import the delegation role by constructing the roleArn String delegationRoleArn = Stack.of(this).formatArn(ArnComponents.builder() .region("") // IAM is global in each partition .service("iam") .account("parent-account-id") .resource("role") .resourceName("MyDelegationRole") .build()); IRole delegationRole = Role.fromRoleArn(this, "DelegationRole", delegationRoleArn); // create the record // create the record CrossAccountZoneDelegationRecord.Builder.create(this, "delegate") .delegatedZone(subZone) .parentHostedZoneName("someexample.com") // or you can use parentHostedZoneId .delegationRole(delegationRole) .build();
If you don't know the ID of the Hosted Zone to import, you can use the
HostedZone.fromLookup
:
HostedZone.fromLookup(this, "MyZone", HostedZoneProviderProps.builder() .domainName("example.com") .build());
HostedZone.fromLookup
requires an environment to be configured. Check
out the documentation for more documentation and examples. CDK
automatically looks into your ~/.aws/config
file for the [default]
profile.
If you want to specify a different account run cdk deploy --profile [profile]
.
new MyDevStack(app, 'dev', { env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION, }, });
If you know the ID and Name of a Hosted Zone, you can import it directly:
IHostedZone zone = HostedZone.fromHostedZoneAttributes(this, "MyZone", HostedZoneAttributes.builder() .zoneName("example.com") .hostedZoneId("ZOJJZC49E0EPZ") .build());
Alternatively, use the HostedZone.fromHostedZoneId
to import hosted zones if
you know the ID and the retrieval for the zoneName
is undesirable.
IHostedZone zone = HostedZone.fromHostedZoneId(this, "MyZone", "ZOJJZC49E0EPZ");
You can import a Public Hosted Zone as well with the similar PubicHostedZone.fromPublicHostedZoneId
and PubicHostedZone.fromPublicHostedZoneAttributes
methods:
IHostedZone zoneFromAttributes = PublicHostedZone.fromPublicHostedZoneAttributes(this, "MyZone", PublicHostedZoneAttributes.builder() .zoneName("example.com") .hostedZoneId("ZOJJZC49E0EPZ") .build()); // Does not know zoneName IPublicHostedZone zoneFromId = PublicHostedZone.fromPublicHostedZoneId(this, "MyZone", "ZOJJZC49E0EPZ");
When you create a VPC endpoint service, AWS generates endpoint-specific DNS hostnames that consumers use to communicate with the service. For example, vpce-1234-abcdev-us-east-1.vpce-svc-123345.us-east-1.vpce.amazonaws.com. By default, your consumers access the service with that DNS name. This can cause problems with HTTPS traffic because the DNS will not match the backend certificate:
curl: (60) SSL: no alternative certificate subject name matches target host name 'vpce-abcdefghijklmnopq-rstuvwx.vpce-svc-abcdefghijklmnopq.us-east-1.vpce.amazonaws.com'
Effectively, the endpoint appears untrustworthy. To mitigate this, clients have to create an alias for this DNS name in Route53.
Private DNS for an endpoint service lets you configure a private DNS name so consumers can access the service using an existing DNS name without creating this Route53 DNS alias This DNS name can also be guaranteed to match up with the backend certificate.
Before consumers can use the private DNS name, you must verify that you have control of the domain/subdomain.
Assuming your account has ownership of the particular domain/subdomain, this construct sets up the private DNS configuration on the endpoint service, creates all the necessary Route53 entries, and verifies domain ownership.
import software.amazon.awscdk.core.Stack; import software.amazon.awscdk.services.ec2.Vpc; import software.amazon.awscdk.services.ec2.VpcEndpointService; import software.amazon.awscdk.services.elasticloadbalancingv2.NetworkLoadBalancer; import software.amazon.awscdk.services.route53.PublicHostedZone; import software.amazon.awscdk.services.route53.VpcEndpointServiceDomainName; Stack stack = new Stack(); Vpc vpc = new Vpc(stack, "VPC"); NetworkLoadBalancer nlb = NetworkLoadBalancer.Builder.create(stack, "NLB") .vpc(vpc) .build(); VpcEndpointService vpces = VpcEndpointService.Builder.create(stack, "VPCES") .vpcEndpointServiceLoadBalancers(List.of(nlb)) .build(); // You must use a public hosted zone so domain ownership can be verified PublicHostedZone zone = PublicHostedZone.Builder.create(stack, "PHZ") .zoneName("aws-cdk.dev") .build(); VpcEndpointServiceDomainName.Builder.create(stack, "EndpointDomain") .endpointService(vpces) .domainName("my-stuff.aws-cdk.dev") .publicHostedZone(zone) .build();
Copyright © 2023. All rights reserved.