Interface CfnVirtualNode.VirtualNodeConnectionPoolProperty

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

@Stability(Stable) public static interface CfnVirtualNode.VirtualNodeConnectionPoolProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the type of virtual node connection pool.

Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.

If not present the default value for maxPendingRequests is 2147483647 .

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.*;
 VirtualNodeConnectionPoolProperty virtualNodeConnectionPoolProperty = VirtualNodeConnectionPoolProperty.builder()
         .grpc(VirtualNodeGrpcConnectionPoolProperty.builder()
                 .maxRequests(123)
                 .build())
         .http(VirtualNodeHttpConnectionPoolProperty.builder()
                 .maxConnections(123)
                 // the properties below are optional
                 .maxPendingRequests(123)
                 .build())
         .http2(VirtualNodeHttp2ConnectionPoolProperty.builder()
                 .maxRequests(123)
                 .build())
         .tcp(VirtualNodeTcpConnectionPoolProperty.builder()
                 .maxConnections(123)
                 .build())
         .build();
 

See Also: