interface DsRecordProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Route53.DsRecordProps |
Java | software.amazon.awscdk.services.route53.DsRecordProps |
Python | aws_cdk.aws_route53.DsRecordProps |
TypeScript (source) | @aws-cdk/aws-route53 » DsRecordProps |
Construction properties for a DSRecord.
Example
declare const myZone: route53.HostedZone;
new route53.DsRecord(this, 'DSRecord', {
zone: myZone,
recordName: 'foo',
values: [
'12345 3 1 123456789abcdef67890123456789abcdef67890',
],
ttl: Duration.minutes(90), // Optional - default is 30 minutes
});
Properties
Name | Type | Description |
---|---|---|
values | string[] | The DS values. |
zone | IHosted | The hosted zone in which to define the new record. |
comment? | string | A comment to add on the record. |
record | string | The domain name for this record. |
ttl? | Duration | The resource record cache time to live (TTL). |
values
Type:
string[]
The DS values.
zone
Type:
IHosted
The hosted zone in which to define the new record.
comment?
Type:
string
(optional, default: no comment)
A comment to add on the record.
recordName?
Type:
string
(optional, default: zone root)
The domain name for this record.
ttl?
Type:
Duration
(optional, default: Duration.minutes(30))
The resource record cache time to live (TTL).