Interface CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty

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

@Stability(Stable) public static interface CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty extends software.amazon.jsii.JsiiSerializable
An object that represents a type of connection pool.

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.*;
 VirtualNodeHttpConnectionPoolProperty virtualNodeHttpConnectionPoolProperty = VirtualNodeHttpConnectionPoolProperty.builder()
         .maxConnections(123)
         // the properties below are optional
         .maxPendingRequests(123)
         .build();