Class: Aws::AppMesh::Types::VirtualNodeConnectionPool
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualNodeConnectionPool
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
VirtualNodeConnectionPool is a union - when making an API calls you must set exactly one of the members.
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`.
Defined Under Namespace
Classes: Grpc, Http, Http2, Tcp, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grpc ⇒ Types::VirtualNodeGrpcConnectionPool
An object that represents a type of connection pool.
-
#http ⇒ Types::VirtualNodeHttpConnectionPool
An object that represents a type of connection pool.
-
#http2 ⇒ Types::VirtualNodeHttp2ConnectionPool
An object that represents a type of connection pool.
-
#tcp ⇒ Types::VirtualNodeTcpConnectionPool
An object that represents a type of connection pool.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#grpc ⇒ Types::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 |
#http ⇒ Types::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 |
#http2 ⇒ Types::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 |
#tcp ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5731 5732 5733 |
# File 'lib/aws-sdk-appmesh/types.rb', line 5731 def unknown @unknown end |