Interface CfnContainer.HealthCheckConfigProperty

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

@Stability(Stable) public static interface CfnContainer.HealthCheckConfigProperty extends software.amazon.jsii.JsiiSerializable
HealthCheckConfig is a property of the PublicEndpoint property. It describes the healthcheck configuration of a container deployment on a container service.

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.lightsail.*;
 HealthCheckConfigProperty healthCheckConfigProperty = HealthCheckConfigProperty.builder()
         .healthyThreshold(123)
         .intervalSeconds(123)
         .path("path")
         .successCodes("successCodes")
         .timeoutSeconds(123)
         .unhealthyThreshold(123)
         .build();
 

See Also: