Show / Hide Table of Contents

Interface INsRecordProps

Construction properties for a NSRecord.

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 INsRecordProps : IRecordSetOptions
Syntax (vb)
Public Interface INsRecordProps Inherits IRecordSetOptions
Remarks

ExampleMetadata: infused

Examples
HostedZone myZone;


            new NsRecord(this, "NSRecord", new NsRecordProps {
                Zone = myZone,
                RecordName = "foo",
                Values = new [] { "ns-1.awsdns.co.uk.", "ns-2.awsdns.com." },
                Ttl = Duration.Minutes(90)
            });

Synopsis

Properties

Values

The NS values.

Properties

Values

The NS values.

string[] Values { get; }
Property Value

string[]

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX