Class: Aws::ElasticLoadBalancing::Types::ConfigureHealthCheckInput

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

Overview

Note:

When making an API call, you may pass ConfigureHealthCheckInput data as a hash:

{
  load_balancer_name: "AccessPointName", # required
  health_check: { # required
    target: "HealthCheckTarget", # required
    interval: 1, # required
    timeout: 1, # required
    unhealthy_threshold: 1, # required
    healthy_threshold: 1, # required
  },
}

Contains the parameters for ConfigureHealthCheck.

Instance Attribute Summary collapse

Instance Attribute Details

#health_checkTypes::HealthCheck

The configuration information.

Returns:



302
303
304
305
306
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 302

class ConfigureHealthCheckInput < Struct.new(
  :load_balancer_name,
  :health_check)
  include Aws::Structure
end

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


302
303
304
305
306
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 302

class ConfigureHealthCheckInput < Struct.new(
  :load_balancer_name,
  :health_check)
  include Aws::Structure
end