Interface CfnTargetGroup.HealthCheckConfigProperty

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

@Stability(Stable) public static interface CfnTargetGroup.HealthCheckConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes the health check configuration of a target group.

Health check configurations aren't used for target groups of type LAMBDA or ALB .

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.vpclattice.*;
 HealthCheckConfigProperty healthCheckConfigProperty = HealthCheckConfigProperty.builder()
         .enabled(false)
         .healthCheckIntervalSeconds(123)
         .healthCheckTimeoutSeconds(123)
         .healthyThresholdCount(123)
         .matcher(MatcherProperty.builder()
                 .httpCode("httpCode")
                 .build())
         .path("path")
         .port(123)
         .protocol("protocol")
         .protocolVersion("protocolVersion")
         .unhealthyThresholdCount(123)
         .build();
 

See Also: