You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppMesh::Types::VirtualNodeConnectionPool

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing VirtualNodeConnectionPool as input to an Aws::Client method, you can use a vanilla Hash:

{
  grpc: {
    max_requests: 1, # required
  },
  http: {
    max_connections: 1, # required
    max_pending_requests: 1,
  },
  http2: {
    max_requests: 1, # required
  },
  tcp: {
    max_connections: 1, # required
  },
}

An object that represents the type of virtual node connection pool.

Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.

If not present the default value for maxPendingRequests is 2147483647.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#grpcTypes::VirtualNodeGrpcConnectionPool

An object that represents a type of connection pool.

Returns:

#httpTypes::VirtualNodeHttpConnectionPool

An object that represents a type of connection pool.

Returns:

#http2Types::VirtualNodeHttp2ConnectionPool

An object that represents a type of connection pool.

Returns:

#tcpTypes::VirtualNodeTcpConnectionPool

An object that represents a type of connection pool.

Returns: