AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Specifies the health check settings to use when evaluating the health state of your EC2 instances.

For more information, see Configure Health Checks for Your Load Balancer in the Classic Load Balancers Guide.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ConfigureHealthCheckAsync.

Namespace: Amazon.ElasticLoadBalancing
Assembly: AWSSDK.ElasticLoadBalancing.dll
Version: 3.x.y.z

Syntax

C#
public virtual ConfigureHealthCheckResponse ConfigureHealthCheck(
         ConfigureHealthCheckRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest

Container for the necessary parameters to execute the ConfigureHealthCheck service method.

Return Value


The response from the ConfigureHealthCheck service method, as returned by ElasticLoadBalancing.

Exceptions

ExceptionCondition
AccessPointNotFoundException The specified load balancer does not exist.

Examples

This example specifies the health check settings used to evaluate the health of your backend EC2 instances.

To specify the health check settings for your backend EC2 instances


var client = new AmazonElasticLoadBalancingClient();
var response = client.ConfigureHealthCheck(new ConfigureHealthCheckRequest 
{
    HealthCheck = new HealthCheck {
        HealthyThreshold = 2,
        Interval = 30,
        Target = "HTTP:80/png",
        Timeout = 3,
        UnhealthyThreshold = 2
    },
    LoadBalancerName = "my-load-balancer"
});

HealthCheck healthCheck = response.HealthCheck;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also