CaaRecordValue

class aws_cdk.aws_route53.CaaRecordValue(*, flag, tag, value)

Bases: object

Properties for a CAA record value.

Parameters:
  • flag (Union[int, float]) – The flag.

  • tag (CaaTag) – The tag.

  • value (str) – The value associated with the tag.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_route53 as route53

caa_record_value = route53.CaaRecordValue(
    flag=123,
    tag=route53.CaaTag.ISSUE,
    value="value"
)

Attributes

flag

The flag.

tag

The tag.

value

The value associated with the tag.