Interface RouteProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, RouteBaseProps
All Known Implementing Classes:
RouteProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:46.144Z") @Stability(Stable) public interface RouteProps extends software.amazon.jsii.JsiiSerializable, RouteBaseProps
Properties to define new Routes.

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.*;
 Mesh mesh;
 RouteSpec routeSpec;
 VirtualRouter virtualRouter;
 RouteProps routeProps = RouteProps.builder()
         .mesh(mesh)
         .routeSpec(routeSpec)
         .virtualRouter(virtualRouter)
         // the properties below are optional
         .routeName("routeName")
         .build();
 
  • Method Details