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.
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 |
# File 'gems/aws-sdk-appmesh/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 |
#http ⇒ Types::HttpTimeout
An object that represents types of timeouts.
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 |
# File 'gems/aws-sdk-appmesh/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 |
#http2 ⇒ Types::HttpTimeout
An object that represents types of timeouts.
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 |
# File 'gems/aws-sdk-appmesh/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 |
#tcp ⇒ Types::TcpTimeout
An object that represents types of timeouts.
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 |
# File 'gems/aws-sdk-appmesh/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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3330 3331 3332 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3330 def unknown @unknown end |