Interface IARecordAttrs
Construction properties to import existing ARecord as target.
Inherited Members
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
Remarks
ExampleMetadata: infused