interface ZoneDelegationOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Route53.ZoneDelegationOptions |
Java | software.amazon.awscdk.services.route53.ZoneDelegationOptions |
Python | aws_cdk.aws_route53.ZoneDelegationOptions |
TypeScript (source) | @aws-cdk/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 route53 from '@aws-cdk/aws-route53';
import * as cdk from '@aws-cdk/core';
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.