Show / Hide Table of Contents

Interface ICaaRecordValue

Properties for a CAA record value.

Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICaaRecordValue
Syntax (vb)
Public Interface 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

Properties

Flag

The flag.

Tag

The tag.

Value

The value associated with the tag.

Properties

Flag

The flag.

double Flag { get; }
Property Value

double

Remarks

ExampleMetadata: fixture=_generated

Tag

The tag.

CaaTag Tag { get; }
Property Value

CaaTag

Remarks

ExampleMetadata: fixture=_generated

Value

The value associated with the tag.

string Value { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX