Class ARecord
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.route53.RecordSet
software.amazon.awscdk.services.route53.ARecord
- All Implemented Interfaces:
IResource
,IRecordSet
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.102.0 (build e354887)",
date="2024-09-10T01:10:15.293Z")
@Stability(Stable)
public class ARecord
extends RecordSet
A DNS A record.
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 classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.route53.IRecordSet
IRecordSet.Jsii$Default, IRecordSet.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
ARecord
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ARecord
(software.amazon.jsii.JsiiObjectRef objRef) ARecord
(software.constructs.Construct scope, String id, ARecordProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic ARecord
fromARecordAttributes
(software.constructs.Construct scope, String id, ARecordAttrs attrs) Creates new A record of type alias with target set to an existing A Record DNS.Methods inherited from class software.amazon.awscdk.services.route53.RecordSet
getDomainName
Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ARecord
protected ARecord(software.amazon.jsii.JsiiObjectRef objRef) -
ARecord
protected ARecord(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ARecord
@Stability(Stable) public ARecord(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ARecordProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromARecordAttributes
@Stability(Stable) @NotNull public static ARecord fromARecordAttributes(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ARecordAttrs attrs) Creates new A record of type alias with target set to an existing A Record DNS.Use when the target A record is created outside of CDK For records created as part of CDK use
- Parameters:
scope
- the parent Construct for this Construct. This parameter is required.id
- Logical Id of the resource. This parameter is required.attrs
- the ARecordAttributes (Target Arecord DNS name and HostedZone). This parameter is required.- Returns:
- AWS::Route53::RecordSet of type A with target alias set to existing A record
-