You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListenerTimeout as input to an Aws::Client method, you can use a vanilla Hash:

{
  grpc: {
    idle: {
      unit: "s", # accepts s, ms
      value: 1,
    },
    per_request: {
      unit: "s", # accepts s, ms
      value: 1,
    },
  },
  http: {
    idle: {
      unit: "s", # accepts s, ms
      value: 1,
    },
    per_request: {
      unit: "s", # accepts s, ms
      value: 1,
    },
  },
  http2: {
    idle: {
      unit: "s", # accepts s, ms
      value: 1,
    },
    per_request: {
      unit: "s", # accepts s, ms
      value: 1,
    },
  },
  tcp: {
    idle: {
      unit: "s", # accepts s, ms
      value: 1,
    },
  },
}

An object that represents timeouts for different protocols.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#grpcTypes::GrpcTimeout

An object that represents types of timeouts.

Returns:

#httpTypes::HttpTimeout

An object that represents types of timeouts.

Returns:

#http2Types::HttpTimeout

An object that represents types of timeouts.

Returns:

#tcpTypes::TcpTimeout

An object that represents types of timeouts.

Returns: