CaaAmazonRecordProps

class aws_cdk.aws_route53.CaaAmazonRecordProps(*, zone, comment=None, record_name=None, ttl=None)

Bases: RecordSetOptions

Construction properties for a CaaAmazonRecord.

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 comment

  • record_name (Optional[str]) – The domain name for this record. Default: zone root

  • ttl (Optional[Duration]) – The resource record cache time to live (TTL). Default: Duration.minutes(30)

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

caa_amazon_record_props = route53.CaaAmazonRecordProps(
    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

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.