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

Class: Aws::SecurityHub::Types::AwsElbLoadBalancerHealthCheck

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

Overview

Note:

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

{
  healthy_threshold: 1,
  interval: 1,
  target: "NonEmptyString",
  timeout: 1,
  unhealthy_threshold: 1,
}

Contains information about the health checks that are conducted on the load balancer.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#healthy_thresholdInteger

The number of consecutive health check successes required before the instance is moved to the Healthy state.

Returns:

  • (Integer)

    The number of consecutive health check successes required before the instance is moved to the Healthy state.

#intervalInteger

The approximate interval, in seconds, between health checks of an individual instance.

Returns:

  • (Integer)

    The approximate interval, in seconds, between health checks of an individual instance.

#targetString

The instance that is being checked. The target specifies the protocol and port. The available protocols are TCP, SSL, HTTP, and HTTPS. The range of valid ports is 1 through 65535.

For the HTTP and HTTPS protocols, the target also specifies the ping path.

For the TCP protocol, the target is specified as TCP: <port>.

For the SSL protocol, the target is specified as SSL.<port>.

For the HTTP and HTTPS protocols, the target is specified as <protocol>:<port>/<path to ping>.

Returns:

  • (String)

    The instance that is being checked.

#timeoutInteger

The amount of time, in seconds, during which no response means a failed health check.

Returns:

  • (Integer)

    The amount of time, in seconds, during which no response means a failed health check.

#unhealthy_thresholdInteger

The number of consecutive health check failures that must occur before the instance is moved to the Unhealthy state.

Returns:

  • (Integer)

    The number of consecutive health check failures that must occur before the instance is moved to the Unhealthy state.