Interface GatewayRouteProps

All Superinterfaces:
GatewayRouteBaseProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GatewayRouteProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:23:56.915Z") @Stability(Stable) public interface GatewayRouteProps extends software.amazon.jsii.JsiiSerializable, GatewayRouteBaseProps
Properties to define a new GatewayRoute.

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.appmesh.*;
 GatewayRouteSpec gatewayRouteSpec;
 VirtualGateway virtualGateway;
 GatewayRouteProps gatewayRouteProps = GatewayRouteProps.builder()
         .routeSpec(gatewayRouteSpec)
         .virtualGateway(virtualGateway)
         // the properties below are optional
         .gatewayRouteName("gatewayRouteName")
         .build();