Interface CfnVirtualRouter.VirtualRouterListenerProperty

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

@Stability(Stable) public static interface CfnVirtualRouter.VirtualRouterListenerProperty extends software.amazon.jsii.JsiiSerializable
An object that represents a virtual router listener.

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.*;
 VirtualRouterListenerProperty virtualRouterListenerProperty = VirtualRouterListenerProperty.builder()
         .portMapping(PortMappingProperty.builder()
                 .port(123)
                 .protocol("protocol")
                 .build())
         .build();
 

See Also: