Class: Aws::AppMesh::Types::VirtualNodeHttpConnectionPool
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualNodeHttpConnectionPool
- Includes:
- Structure
- Defined in:
- 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.
5827 5828 5829 5830 5831 5832 |
# File 'lib/aws-sdk-appmesh/types.rb', line 5827 class VirtualNodeHttpConnectionPool < 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.
5827 5828 5829 5830 5831 5832 |
# File 'lib/aws-sdk-appmesh/types.rb', line 5827 class VirtualNodeHttpConnectionPool < Struct.new( :max_connections, :max_pending_requests) SENSITIVE = [] include Aws::Structure end |