ARecordProps¶
-
class
aws_cdk.aws_route53.
ARecordProps
(*, zone, comment=None, record_name=None, ttl=None, target)¶ Bases:
aws_cdk.aws_route53.RecordSetOptions
Construction properties for a ARecord.
- 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)target (
RecordTarget
) – The target.
Attributes
-
comment
¶ A comment to add on the record.
- Default
no comment
- Return type
Optional
[str
]
-
record_name
¶ The domain name for this record.
- Default
zone root
- Return type
Optional
[str
]
-
target
¶ The target.
- Return type
-
ttl
¶ The resource record cache time to live (TTL).
- Default
Duration.minutes(30)
- Return type
Optional
[Duration
]
-
zone
¶ The hosted zone in which to define the new record.
- Return type