Interface CfnBasePathMappingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBasePathMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:02.514Z")
@Stability(Stable)
public interface CfnBasePathMappingProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnBasePathMapping
.
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.*; CfnBasePathMappingProps cfnBasePathMappingProps = CfnBasePathMappingProps.builder() .domainName("domainName") // the properties below are optional .basePath("basePath") .id("id") .restApiId("restApiId") .stage("stage") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBasePathMappingProps
static final class
An implementation forCfnBasePathMappingProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The base path name that callers of the API must provide as part of the URL after the domain name.The domain name of the BasePathMapping resource to be described.default String
getId()
default String
The string identifier of the associated RestApi.default String
getStage()
The name of the associated stage.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The domain name of the BasePathMapping resource to be described.- See Also:
-
getBasePath
The base path name that callers of the API must provide as part of the URL after the domain name.- See Also:
-
getId
- See Also:
-
getRestApiId
The string identifier of the associated RestApi.- See Also:
-
getStage
The name of the associated stage.- See Also:
-
builder
- Returns:
- a
CfnBasePathMappingProps.Builder
ofCfnBasePathMappingProps
-