Interface CfnVirtualNode.VirtualNodeConnectionPoolProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.VirtualNodeConnectionPoolProperty.Jsii$Proxy
- Enclosing class:
- CfnVirtualNode
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVirtualNode.VirtualNodeConnectionPoolProperty
static final class
An implementation forCfnVirtualNode.VirtualNodeConnectionPoolProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
getGrpc()
An object that represents a type of connection pool.default Object
getHttp()
An object that represents a type of connection pool.default Object
getHttp2()
An object that represents a type of connection pool.default Object
getTcp()
An object that represents a type of connection pool.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGrpc
An object that represents a type of connection pool. -
getHttp
An object that represents a type of connection pool. -
getHttp2
An object that represents a type of connection pool. -
getTcp
An object that represents a type of connection pool. -
builder
-