data class ServiceHealthCheckConfiguration(val healthyThreshold: Int? = null, val interval: Int? = null, val path: String? = null, val protocol: String? = null, val timeout: Int? = null, val unhealthyThreshold: Int? = null)
Number of consecutive checks that must succeed before App Runner decides that the service is healthy. Defaults to 1. Minimum value of 1. Maximum value of 20.
IP protocol that App Runner uses to perform health checks for your service. Valid values: TCP, HTTP. Defaults to TCP. If you set protocol to HTTP, App Runner sends health check requests to the HTTP path specified by path.
Number of consecutive checks that must fail before App Runner decides that the service is unhealthy. Defaults to 5. Minimum value of 1. Maximum value of 20.