Class: Aws::AppMesh::Types::ListenerTimeout
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ListenerTimeout
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
ListenerTimeout is a union - when making an API calls you must set exactly one of the members.
ListenerTimeout is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ListenerTimeout corresponding to the set member.
An object that represents timeouts for different protocols.
Defined Under Namespace
Classes: Grpc, Http, Http2, Tcp, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grpc ⇒ Types::GrpcTimeout
An object that represents types of timeouts.
-
#http ⇒ Types::HttpTimeout
An object that represents types of timeouts.
-
#http2 ⇒ Types::HttpTimeout
An object that represents types of timeouts.
-
#tcp ⇒ Types::TcpTimeout
An object that represents types of timeouts.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#grpc ⇒ Types::GrpcTimeout
An object that represents types of timeouts.
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5362 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 |
#http ⇒ Types::HttpTimeout
An object that represents types of timeouts.
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5362 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 |
#http2 ⇒ Types::HttpTimeout
An object that represents types of timeouts.
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5362 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 |
#tcp ⇒ Types::TcpTimeout
An object that represents types of timeouts.
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5362 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5362 5363 5364 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5362 def unknown @unknown end |