interface CaaAmazonRecordProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Route53.CaaAmazonRecordProps |
Java | software.amazon.awscdk.services.route53.CaaAmazonRecordProps |
Python | aws_cdk.aws_route53.CaaAmazonRecordProps |
TypeScript (source) | @aws-cdk/aws-route53 » CaaAmazonRecordProps |
Construction properties for a CaaAmazonRecord.
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';
declare const hostedZone: route53.HostedZone;
const caaAmazonRecordProps: route53.CaaAmazonRecordProps = {
zone: hostedZone,
// the properties below are optional
comment: 'comment',
recordName: 'recordName',
ttl: cdk.Duration.minutes(30),
};
Properties
Name | Type | Description |
---|---|---|
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). |
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).