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
Note:
When making an API call, you may pass VirtualGatewayHttpConnectionPool data as a hash:
{
max_connections: 1, # required
max_pending_requests: 1,
}
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.
8564 8565 8566 8567 8568 8569 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8564 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.
8564 8565 8566 8567 8568 8569 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8564 class VirtualGatewayHttpConnectionPool < Struct.new( :max_connections, :max_pending_requests) SENSITIVE = [] include Aws::Structure end |