Server Group Health Check
data class ServerGroupHealthCheck(val healthCheckConnectPort: Int? = null, val healthCheckConnectTimeout: Int? = null, val healthCheckDomain: String? = null, val healthCheckEnabled: Boolean? = null, val healthCheckHttpCodes: List<String>? = null, val healthCheckInterval: Int? = null, val healthCheckType: String? = null, val healthCheckUrl: String? = null, val healthyThreshold: Int? = null, val httpCheckMethod: String? = null, val unhealthyThreshold: Int? = null)
Constructors
Link copied to clipboard
fun ServerGroupHealthCheck(healthCheckConnectPort: Int? = null, healthCheckConnectTimeout: Int? = null, healthCheckDomain: String? = null, healthCheckEnabled: Boolean? = null, healthCheckHttpCodes: List<String>? = null, healthCheckInterval: Int? = null, healthCheckType: String? = null, healthCheckUrl: String? = null, healthyThreshold: Int? = null, httpCheckMethod: String? = null, unhealthyThreshold: Int? = null)
Types
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The path to which health check requests are sent. The path must be 1 to 80 characters in length, and can contain only letters, digits, and the following special characters: - / . % ? # & =
. It can also contain the following extended characters: _ ; ~ ! ( ) * [ ] @ $ ^ : ' , +
. The path must start with a forward slash (/). Note: This parameter takes effect only if health_check_type
is set to http
.