Interface ARecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RecordSetOptions
- All Known Implementing Classes:
ARecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.876Z")
@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();
-
Nested Class Summary
Nested ClassesModifier 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, getRecordName, getTtl, getZone
-
Method Details
-
getTarget
The target. -
builder
- Returns:
- a
ARecordProps.Builder
ofARecordProps
-