Class CaaRecordValue
Properties for a CAA record value.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CaaRecordValue : ICaaRecordValue
Syntax (vb)
Public Class CaaRecordValue Implements ICaaRecordValue
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53;
var caaRecordValue = new CaaRecordValue {
Flag = 123,
Tag = CaaTag.ISSUE,
Value = "value"
};
Synopsis
Constructors
| CaaRecordValue() | Properties for a CAA record value. |
Properties
| Flag | The flag. |
| Tag | The tag. |
| Value | The value associated with the tag. |
Constructors
CaaRecordValue()
Properties for a CAA record value.
public CaaRecordValue()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53;
var caaRecordValue = new CaaRecordValue {
Flag = 123,
Tag = CaaTag.ISSUE,
Value = "value"
};
Properties
Flag
The flag.
public double Flag { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Tag
The tag.
public CaaTag Tag { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Value
The value associated with the tag.
public string Value { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated