Interface CfnVirtualGateway.VirtualGatewayHttpConnectionPoolProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualGateway.VirtualGatewayHttpConnectionPoolProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualGateway
@Stability(Stable)
public static interface CfnVirtualGateway.VirtualGatewayHttpConnectionPoolProperty
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.*; VirtualGatewayHttpConnectionPoolProperty virtualGatewayHttpConnectionPoolProperty = VirtualGatewayHttpConnectionPoolProperty.builder() .maxConnections(123) // the properties below are optional .maxPendingRequests(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnVirtualGateway.VirtualGatewayHttpConnectionPoolProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxConnections
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.- See Also:
-
getMaxPendingRequests
Number of overflowing requests aftermax_connections
Envoy will queue to upstream cluster.- See Also:
-
builder
@Stability(Stable) static CfnVirtualGateway.VirtualGatewayHttpConnectionPoolProperty.Builder builder()
-