Show / Hide Table of Contents

Interface ITxtRecordProps

Construction properties for a TxtRecord.

Inherited Members
IRecordSetOptions.Zone
IRecordSetOptions.CidrRoutingConfig
IRecordSetOptions.Comment
IRecordSetOptions.DeleteExisting
IRecordSetOptions.GeoLocation
IRecordSetOptions.HealthCheck
IRecordSetOptions.MultiValueAnswer
IRecordSetOptions.RecordName
IRecordSetOptions.Region
IRecordSetOptions.SetIdentifier
IRecordSetOptions.Ttl
IRecordSetOptions.Weight
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITxtRecordProps : IRecordSetOptions
Syntax (vb)
Public Interface ITxtRecordProps Inherits IRecordSetOptions
Remarks

ExampleMetadata: infused

Examples
HostedZone myZone;


            new TxtRecord(this, "TXTRecord", new TxtRecordProps {
                Zone = myZone,
                RecordName = "_foo",  // If the name ends with a ".", it will be used as-is;
                // if it ends with a "." followed by the zone name, a trailing "." will be added automatically;
                // otherwise, a ".", the zone name, and a trailing "." will be added automatically.
                // Defaults to zone root if not specified.
                Values = new [] { "Bar!", "Baz?" },
                Ttl = Duration.Minutes(90)
            });

Synopsis

Properties

Values

The text values.

Properties

Values

The text values.

string[] Values { get; }
Property Value

string[]

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX