Class: Aws::AppMesh::Types::ListenerTimeout

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

Overview

Note:

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

Note:

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.

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::GrpcTimeout

An object that represents types of timeouts.

Returns:



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

#httpTypes::HttpTimeout

An object that represents types of timeouts.

Returns:



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

#http2Types::HttpTimeout

An object that represents types of timeouts.

Returns:



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

#tcpTypes::TcpTimeout

An object that represents types of timeouts.

Returns:



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3330
3331
3332
# File 'lib/aws-sdk-appmesh/types.rb', line 3330

def unknown
  @unknown
end