ZoneDelegationRecordProps
- class aws_cdk.aws_route53.ZoneDelegationRecordProps(*, zone, comment=None, record_name=None, ttl=None, name_servers)
Bases:
RecordSetOptions
Construction properties for a ZoneDelegationRecord.
- Parameters:
zone (
IHostedZone
) – The hosted zone in which to define the new record.comment (
Optional
[str
]) – A comment to add on the record. Default: no commentrecord_name (
Optional
[str
]) – The domain name for this record. Default: zone rootttl (
Optional
[Duration
]) – The resource record cache time to live (TTL). Default: Duration.minutes(30)name_servers (
Sequence
[str
]) – The name servers to report in the delegation records.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_route53 as route53 import aws_cdk.core as cdk # hosted_zone: route53.HostedZone zone_delegation_record_props = route53.ZoneDelegationRecordProps( name_servers=["nameServers"], zone=hosted_zone, # the properties below are optional comment="comment", record_name="recordName", ttl=cdk.Duration.minutes(30) )
Attributes
- comment
A comment to add on the record.
- Default:
no comment
- name_servers
The name servers to report in the delegation records.
- record_name
The domain name for this record.
- Default:
zone root
- ttl
The resource record cache time to live (TTL).
- Default:
Duration.minutes(30)
- zone
The hosted zone in which to define the new record.