Class ApiGateway
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.route53.targets.ApiGatewayDomain
software.amazon.awscdk.services.route53.targets.ApiGateway
- All Implemented Interfaces:
IAliasRecordTarget
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.862Z")
@Stability(Stable)
public class ApiGateway
extends ApiGatewayDomain
Defines an API Gateway REST API as the alias target. Requires that the domain name will be defined through
RestApiProps.domainName
.
You can direct the alias to any apigateway.DomainName
resource through the
ApiGatewayDomain
class.
Example:
import software.amazon.awscdk.services.route53.*; import software.amazon.awscdk.services.route53.targets.*; RestApi api; Object hostedZoneForExampleCom; ARecord.Builder.create(this, "CustomDomainAliasRecord") .zone(hostedZoneForExampleCom) .target(RecordTarget.fromAlias(new ApiGateway(api))) .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
-
Constructor Summary
ModifierConstructorDescriptionApiGateway
(RestApiBase api) protected
ApiGateway
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ApiGateway
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Methods inherited from class software.amazon.awscdk.services.route53.targets.ApiGatewayDomain
bind, bind
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
-
Constructor Details
-
ApiGateway
protected ApiGateway(software.amazon.jsii.JsiiObjectRef objRef) -
ApiGateway
protected ApiGateway(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ApiGateway
- Parameters:
api
- This parameter is required.
-