Interface CfnVirtualRouter.VirtualRouterSpecProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualRouter.VirtualRouterSpecProperty.Jsii$Proxy
Enclosing class:
CfnVirtualRouter

@Stability(Stable) public static interface CfnVirtualRouter.VirtualRouterSpecProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the specification of a virtual router.

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.*;
 VirtualRouterSpecProperty virtualRouterSpecProperty = VirtualRouterSpecProperty.builder()
         .listeners(List.of(VirtualRouterListenerProperty.builder()
                 .portMapping(PortMappingProperty.builder()
                         .port(123)
                         .protocol("protocol")
                         .build())
                 .build()))
         .build();
 

See Also: