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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-appmesh/types.rb

Overview

Note:

VirtualNodeConnectionPool is a union - when making an API calls you must set exactly one of the members.

Note:

VirtualNodeConnectionPool is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VirtualNodeConnectionPool corresponding to the set member.

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`.

Direct Known Subclasses

Grpc, Http, Http2, Tcp, Unknown

Defined Under Namespace

Classes: Grpc, Http, Http2, Tcp, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#grpcTypes::VirtualNodeGrpcConnectionPool

An object that represents a type of connection pool.



5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
# File 'lib/aws-sdk-appmesh/types.rb', line 5731

class VirtualNodeConnectionPool < Struct.new(
  :grpc,
  :http,
  :http2,
  :tcp,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Grpc < VirtualNodeConnectionPool; end
  class Http < VirtualNodeConnectionPool; end
  class Http2 < VirtualNodeConnectionPool; end
  class Tcp < VirtualNodeConnectionPool; end
  class Unknown < VirtualNodeConnectionPool; end
end

#httpTypes::VirtualNodeHttpConnectionPool

An object that represents a type of connection pool.



5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
# File 'lib/aws-sdk-appmesh/types.rb', line 5731

class VirtualNodeConnectionPool < Struct.new(
  :grpc,
  :http,
  :http2,
  :tcp,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Grpc < VirtualNodeConnectionPool; end
  class Http < VirtualNodeConnectionPool; end
  class Http2 < VirtualNodeConnectionPool; end
  class Tcp < VirtualNodeConnectionPool; end
  class Unknown < VirtualNodeConnectionPool; end
end

#http2Types::VirtualNodeHttp2ConnectionPool

An object that represents a type of connection pool.



5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
# File 'lib/aws-sdk-appmesh/types.rb', line 5731

class VirtualNodeConnectionPool < Struct.new(
  :grpc,
  :http,
  :http2,
  :tcp,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Grpc < VirtualNodeConnectionPool; end
  class Http < VirtualNodeConnectionPool; end
  class Http2 < VirtualNodeConnectionPool; end
  class Tcp < VirtualNodeConnectionPool; end
  class Unknown < VirtualNodeConnectionPool; end
end

#tcpTypes::VirtualNodeTcpConnectionPool

An object that represents a type of connection pool.



5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
# File 'lib/aws-sdk-appmesh/types.rb', line 5731

class VirtualNodeConnectionPool < Struct.new(
  :grpc,
  :http,
  :http2,
  :tcp,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Grpc < VirtualNodeConnectionPool; end
  class Http < VirtualNodeConnectionPool; end
  class Http2 < VirtualNodeConnectionPool; end
  class Tcp < VirtualNodeConnectionPool; end
  class Unknown < VirtualNodeConnectionPool; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5731
5732
5733
# File 'lib/aws-sdk-appmesh/types.rb', line 5731

def unknown
  @unknown
end