Interface GatewayRouteProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:02.669Z") @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();