interface ZoneDelegationOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Route53.ZoneDelegationOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#ZoneDelegationOptions |
![]() | software.amazon.awscdk.services.route53.ZoneDelegationOptions |
![]() | aws_cdk.aws_route53.ZoneDelegationOptions |
![]() | 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
Name | Type | Description |
---|---|---|
comment? | string | A comment to add on the DNS record created to incorporate the delegation. |
ttl? | Duration | The 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.