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

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

Instance Attribute Details

#max_connectionsInteger

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

Returns:

  • (Integer)

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_requestsInteger

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

Returns:

  • (Integer)

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