aws-cdk-lib.aws_route53.ZoneDelegationOptions

interface ZoneDelegationOptions

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

Options available when creating a delegation relationship from one PublicHostedZone to another.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_route53 as route53 } from 'aws-cdk-lib';
const zoneDelegationOptions: route53.ZoneDelegationOptions = {
  comment: 'comment',
  ttl: cdk.Duration.minutes(30),
};

Properties

NameTypeDescription
comment?stringA comment to add on the DNS record created to incorporate the delegation.
ttl?DurationThe TTL (Time To Live) of the DNS delegation record in DNS caches.

comment?

Type: string (optional, default: none)

A comment to add on the DNS record created to incorporate the delegation.


ttl?

Type: Duration (optional, default: 172800)

The TTL (Time To Live) of the DNS delegation record in DNS caches.