Interface ARecordProps

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

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-09T14:39:17.961Z") @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();