Class CloudFrontTarget
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.route53.targets.CloudFrontTarget
- All Implemented Interfaces:
IAliasRecordTarget
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.116Z")
@Stability(Stable)
public class CloudFrontTarget
extends software.amazon.jsii.JsiiObject
implements IAliasRecordTarget
Use a CloudFront Distribution as an alias record target.
Example:
import software.amazon.awscdk.services.cloudfront.*; HostedZone myZone; CloudFrontWebDistribution distribution; AaaaRecord.Builder.create(this, "Alias") .zone(myZone) .target(RecordTarget.fromAlias(new CloudFrontTarget(distribution))) .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.amazon.awscdk.services.route53.IAliasRecordTarget
IAliasRecordTarget.Jsii$Default, IAliasRecordTarget.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The hosted zone Id if using an alias record in Route53. -
Constructor Summary
ModifierConstructorDescriptionCloudFrontTarget
(IDistribution distribution) protected
CloudFrontTarget
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CloudFrontTarget
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionbind
(IRecordSet _record) Return hosted zone ID and DNS name, usable for Route53 alias targets.bind
(IRecordSet _record, IHostedZone _zone) Return hosted zone ID and DNS name, usable for Route53 alias targets.static String
getHostedZoneId
(software.constructs.IConstruct scope) Get the hosted zone id for the current scope.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, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CLOUDFRONT_ZONE_ID
The hosted zone Id if using an alias record in Route53.This value never changes.
-
-
Constructor Details
-
CloudFrontTarget
protected CloudFrontTarget(software.amazon.jsii.JsiiObjectRef objRef) -
CloudFrontTarget
protected CloudFrontTarget(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CloudFrontTarget
- Parameters:
distribution
- This parameter is required.
-
-
Method Details
-
getHostedZoneId
@Stability(Stable) @NotNull public static String getHostedZoneId(@NotNull software.constructs.IConstruct scope) Get the hosted zone id for the current scope.- Parameters:
scope
-- scope in which this resource is defined.
-
bind
@Stability(Stable) @NotNull public AliasRecordTargetConfig bind(@NotNull IRecordSet _record, @Nullable IHostedZone _zone) Return hosted zone ID and DNS name, usable for Route53 alias targets.- Specified by:
bind
in interfaceIAliasRecordTarget
- Parameters:
_record
- This parameter is required._zone
-
-
bind
Return hosted zone ID and DNS name, usable for Route53 alias targets.- Specified by:
bind
in interfaceIAliasRecordTarget
- Parameters:
_record
- This parameter is required.
-