Interface HttpGatewayRouteSpecOptions

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:25.561Z") @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());