aws-cdk-lib.aws_route53.CaaRecordValue

interface CaaRecordValue

LanguageType name
.NETAmazon.CDK.AWS.Route53.CaaRecordValue
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CaaRecordValue
Javasoftware.amazon.awscdk.services.route53.CaaRecordValue
Pythonaws_cdk.aws_route53.CaaRecordValue
TypeScript (source)aws-cdk-lib » aws_route53 » CaaRecordValue

Properties for a CAA record value.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as route53 } from 'aws-cdk-lib';
const caaRecordValue: route53.CaaRecordValue = {
  flag: 123,
  tag: route53.CaaTag.ISSUE,
  value: 'value',
};

Properties

NameTypeDescription
flagnumberThe flag.
tagCaaTagThe tag.
valuestringThe value associated with the tag.

flag

Type: number

The flag.


tag

Type: CaaTag

The tag.


value

Type: string

The value associated with the tag.