Interface BasePathMappingProps
- All Superinterfaces:
BasePathMappingOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BasePathMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.708Z")
@Stability(Stable)
public interface BasePathMappingProps
extends software.amazon.jsii.JsiiSerializable, BasePathMappingOptions
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.apigateway.*; DomainName domainName; RestApi restApi; Stage stage; BasePathMappingProps basePathMappingProps = BasePathMappingProps.builder() .domainName(domainName) .restApi(restApi) // the properties below are optional .basePath("basePath") .stage(stage) .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
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
-