Method: Aws::AppMesh::Types#grpc
- Defined in:
-
lib/aws-sdk-appmesh/types.rb,
lib/aws-sdk-appmesh/types.rb,
lib/aws-sdk-appmesh/types.rb
An object that represents a type of connection pool.
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 |
# File 'lib/aws-sdk-appmesh/types.rb', line 3330 class ListenerTimeout < Struct.new( :grpc, :http, :http2, :tcp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Grpc < ListenerTimeout; end class Http < ListenerTimeout; end class Http2 < ListenerTimeout; end class Tcp < ListenerTimeout; end class Unknown < ListenerTimeout; end end |