Class: Aws::AppMesh::Types::VirtualGatewayHttpConnectionPool
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayHttpConnectionPool
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
An object that represents a type of connection pool.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_connections ⇒ Integer
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
-
#max_pending_requests ⇒ Integer
Number of overflowing requests after
max_connections
Envoy will queue to upstream cluster.
Instance Attribute Details
#max_connections ⇒ Integer
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
5206 5207 5208 5209 5210 5211 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5206 class VirtualGatewayHttpConnectionPool < Struct.new( :max_connections, :max_pending_requests) SENSITIVE = [] include Aws::Structure end |
#max_pending_requests ⇒ Integer
Number of overflowing requests after max_connections
Envoy will
queue to upstream cluster.
5206 5207 5208 5209 5210 5211 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5206 class VirtualGatewayHttpConnectionPool < Struct.new( :max_connections, :max_pending_requests) SENSITIVE = [] include Aws::Structure end |