Interface ARecordProps

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

@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-31T18:44:14.485Z") @Stability(Stable) public interface ARecordProps extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a ARecord.

Example:

 import software.amazon.awscdk.services.apigateway.*;
 HostedZone zone;
 LambdaRestApi restApi;
 ARecord.Builder.create(this, "AliasRecord")
         .zone(zone)
         .target(RecordTarget.fromAlias(new ApiGateway(restApi)))
         .build();