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();