Interface HttpGatewayRouteSpecOptions

All Superinterfaces:
CommonGatewayRouteSpecOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
HttpGatewayRouteSpecOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:46.089Z") @Stability(Stable) public interface HttpGatewayRouteSpecOptions extends software.amazon.jsii.JsiiSerializable, CommonGatewayRouteSpecOptions
Properties specific for HTTP Based GatewayRoutes.

Example:

 VirtualGateway gateway;
 VirtualService virtualService;
 gateway.addGatewayRoute("gateway-route-http-2", GatewayRouteBaseProps.builder()
         .routeSpec(GatewayRouteSpec.http(HttpGatewayRouteSpecOptions.builder()
                 .routeTarget(virtualService)
                 .match(HttpGatewayRouteMatch.builder()
                         // This rewrites the path from '/test' to '/rewrittenPath'.
                         .path(HttpGatewayRoutePathMatch.exactly("/test", "/rewrittenPath"))
                         .build())
                 .build()))
         .build());