interface CaaRecordValue
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Route53.CaaRecordValue |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CaaRecordValue |
Java | software.amazon.awscdk.services.route53.CaaRecordValue |
Python | aws_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
Name | Type | Description |
---|---|---|
flag | number | The flag. |
tag | Caa | The tag. |
value | string | The value associated with the tag. |
flag
Type:
number
The flag.
tag
Type:
Caa
The tag.
value
Type:
string
The value associated with the tag.