Interface CfnBasePathMappingMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBasePathMappingMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.427Z")
@Stability(Stable)
public interface CfnBasePathMappingMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBasePathMappingPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apigateway.*;
CfnBasePathMappingMixinProps cfnBasePathMappingMixinProps = CfnBasePathMappingMixinProps.builder()
.basePath("basePath")
.domainName("domainName")
.id("id")
.restApiId("restApiId")
.stage("stage")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBasePathMappingMixinPropsstatic final classAn implementation forCfnBasePathMappingMixinProps -
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.default ObjectThe 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
-
getBasePath
The base path name that callers of the API must provide as part of the URL after the domain name.- See Also:
-
getDomainName
The domain name of the BasePathMapping resource to be described.Returns union: either
StringorIDomainNameRef- See Also:
-
getId
- See Also:
-
getRestApiId
The string identifier of the associated RestApi.Returns union: either
StringorIRestApiRef- See Also:
-
getStage
- See Also:
-
builder
-