Interface ARecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RecordSetOptions
- All Known Implementing Classes:
ARecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:26.203Z")
@Stability(Stable)
public interface ARecordProps
extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a ARecord.
Example:
import software.amazon.awscdk.services.elasticloadbalancingv2.*; HostedZone zone; ApplicationLoadBalancer lb; ARecord.Builder.create(this, "AliasRecord") .zone(zone) .target(RecordTarget.fromAlias( new LoadBalancerTarget(lb, Map.of( "evaluateTargetHealth", true)))) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forARecordProps
static final class
An implementation forARecordProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.route53.RecordSetOptions
getComment, getDeleteExisting, getGeoLocation, getHealthCheck, getMultiValueAnswer, getRecordName, getRegion, getSetIdentifier, getTtl, getWeight, getZone
-
Method Details
-
getTarget
The target. -
builder
- Returns:
- a
ARecordProps.Builder
ofARecordProps
-