Interface CfnBasePathMappingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBasePathMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:13.530Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBasePathMappingPropsstatic final classAn implementation forCfnBasePathMappingProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe 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 StringgetId()default ObjectThe string identifier of the associated RestApi.default ObjectgetStage()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.Returns union: either
StringorIDomainNameRef- 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.Returns union: either
StringorIRestApiRef- See Also:
-
getStage
- See Also:
-
builder
- Returns:
- a
CfnBasePathMappingProps.BuilderofCfnBasePathMappingProps
-