Interface BasePathMappingProps
- All Superinterfaces:
BasePathMappingOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BasePathMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:25.385Z")
@Stability(Stable)
public interface BasePathMappingProps
extends software.amazon.jsii.JsiiSerializable, BasePathMappingOptions
Example:
RestApi api; IDomainName domainName = DomainName.fromDomainNameAttributes(this, "DomainName", DomainNameAttributes.builder() .domainName("domainName") .domainNameAliasHostedZoneId("domainNameAliasHostedZoneId") .domainNameAliasTarget("domainNameAliasTarget") .build()); BasePathMapping.Builder.create(this, "BasePathMapping") .domainName(domainName) .restApi(api) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBasePathMappingProps
static final class
An implementation forBasePathMappingProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic BasePathMappingProps.Builder
builder()
The DomainName to associate with this base path mapping.The RestApi resource to target.Methods inherited from interface software.amazon.awscdk.services.apigateway.BasePathMappingOptions
getAttachToStage, getBasePath, getStage
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The DomainName to associate with this base path mapping. -
getRestApi
The RestApi resource to target. -
builder
- Returns:
- a
BasePathMappingProps.Builder
ofBasePathMappingProps
-