interface RecordSetOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Route53.RecordSetOptions |
Java | software.amazon.awscdk.services.route53.RecordSetOptions |
Python | aws_cdk.aws_route53.RecordSetOptions |
TypeScript (source) | @aws-cdk/aws-route53 » RecordSetOptions |
Options for a RecordSet.
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 recordSetOptions: route53.RecordSetOptions = {
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).