Show / Hide Table of Contents

Class CaaRecordValue

Properties for a CAA record value.

Inheritance
object
CaaRecordValue
Implements
ICaaRecordValue
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

double

Remarks

ExampleMetadata: fixture=_generated

Tag

The tag.

public CaaTag Tag { get; set; }
Property Value

CaaTag

Remarks

ExampleMetadata: fixture=_generated

Value

The value associated with the tag.

public string Value { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ICaaRecordValue
Back to top Generated by DocFX