Interface ARecordAttrs

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, RecordSetOptions
All Known Implementing Classes:
ARecordAttrs.Jsii$Proxy

@Generated(value="jsii-pacmak/1.109.0 (build c221850)", date="2025-03-14T03:25:04.425Z") @Stability(Stable) public interface ARecordAttrs extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties to import existing ARecord as target.

Example:

 HostedZone myZone;
 String targetRecord = "existing.record.cdk.local";
 ARecord record = ARecord.fromARecordAttributes(this, "A", ARecordAttrs.builder()
         .zone(myZone)
         .recordName("test")
         .targetDNS(targetRecord)
         .build());