Class: Aws::AppMesh::Types::VirtualGatewayHttpConnectionPool

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_connectionsInteger

Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.

Returns:

  • (Integer)


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_requestsInteger

Number of overflowing requests after max_connections Envoy will queue to upstream cluster.

Returns:

  • (Integer)


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