Interface CfnLoadBalancer.HealthCheckProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLoadBalancer.HealthCheckProperty.Jsii$Proxy
Enclosing class:
CfnLoadBalancer

@Stability(Stable) public static interface CfnLoadBalancer.HealthCheckProperty extends software.amazon.jsii.JsiiSerializable
Specifies health check settings for your Classic Load Balancer.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.elasticloadbalancing.*;
 HealthCheckProperty healthCheckProperty = HealthCheckProperty.builder()
         .healthyThreshold("healthyThreshold")
         .interval("interval")
         .target("target")
         .timeout("timeout")
         .unhealthyThreshold("unhealthyThreshold")
         .build();
 

See Also: