Show / Hide Table of Contents

Interface IARecordAttrs

Construction properties to import existing ARecord as target.

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

ExampleMetadata: infused

Examples
HostedZone myZone;


            var targetRecord = "existing.record.cdk.local";
            var record = ARecord.FromARecordAttributes(this, "A", new ARecordAttrs {
                Zone = myZone,
                RecordName = "test",
                TargetDNS = targetRecord
            });

Synopsis

Properties

TargetDNS

Existing A record DNS name to set RecordTarget.

Properties

TargetDNS

Existing A record DNS name to set RecordTarget.

string TargetDNS { get; }
Property Value

string

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX