Interface ARecordProps

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

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:16.788Z") @Stability(Stable) public interface ARecordProps extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a ARecord.

Example:

 import software.amazon.awscdk.services.apigatewayv2.*;
 HostedZone zone;
 DomainName domainName;
 ARecord.Builder.create(this, "AliasRecord")
         .zone(zone)
         .target(RecordTarget.fromAlias(new ApiGatewayv2DomainProperties(domainName.getRegionalDomainName(), domainName.getRegionalHostedZoneId())))
         .build();