Interface ARecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,RecordSetOptions
- All Known Implementing Classes:
ARecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:13.670Z")
@Stability(Stable)
public interface ARecordProps
extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a ARecord.
Example:
import software.amazon.awscdk.regioninfo.RegionInfo;
HostedZone zone;
String ebsEnvironmentUrl;
ARecord.Builder.create(this, "AliasRecord")
.zone(zone)
.target(RecordTarget.fromAlias(
new ElasticBeanstalkEnvironmentEndpointTarget(ebsEnvironmentUrl, Map.of(
"hostedZoneId", RegionInfo.get("us-east-1").getEbsEnvEndpointHostedZoneId()))))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forARecordPropsstatic final classAn implementation forARecordProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.route53.RecordSetOptions
getCidrRoutingConfig, getComment, getDeleteExisting, getGeoLocation, getHealthCheck, getMultiValueAnswer, getRecordName, getRegion, getSetIdentifier, getTtl, getWeight, getZone
-
Method Details
-
getTarget
The target. -
builder
- Returns:
- a
ARecordProps.BuilderofARecordProps
-