Interface AaaaRecordProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-24T02:42:43.764Z") @Stability(Stable) public interface AaaaRecordProps extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a AaaaRecord.

Example:

 import software.amazon.awscdk.services.cloudfront.*;
 HostedZone myZone;
 CloudFrontWebDistribution distribution;
 AaaaRecord.Builder.create(this, "Alias")
         .zone(myZone)
         .target(RecordTarget.fromAlias(new CloudFrontTarget(distribution)))
         .build();