Show / Hide Table of Contents

Interface IDsRecordProps

Construction properties for a DSRecord.

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

ExampleMetadata: infused

Examples
HostedZone myZone;


            new DsRecord(this, "DSRecord", new DsRecordProps {
                Zone = myZone,
                RecordName = "foo",
                Values = new [] { "12345 3 1 123456789abcdef67890123456789abcdef67890" },
                Ttl = Duration.Minutes(90)
            });

Synopsis

Properties

Values

The DS values.

Properties

Values

The DS values.

string[] Values { get; }
Property Value

string[]

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX