Server Group Health Check Args
data class ServerGroupHealthCheckArgs(val healthCheckConnectPort: Output<Int>? = null, val healthCheckConnectTimeout: Output<Int>? = null, val healthCheckDomain: Output<String>? = null, val healthCheckEnabled: Output<Boolean>? = null, val healthCheckHttpCodes: Output<List<String>>? = null, val healthCheckInterval: Output<Int>? = null, val healthCheckType: Output<String>? = null, val healthCheckUrl: Output<String>? = null, val healthyThreshold: Output<Int>? = null, val httpCheckMethod: Output<String>? = null, val unhealthyThreshold: Output<Int>? = null) : ConvertibleToJava<ServerGroupHealthCheckArgs>
Constructors
Link copied to clipboard
fun ServerGroupHealthCheckArgs(healthCheckConnectPort: Output<Int>? = null, healthCheckConnectTimeout: Output<Int>? = null, healthCheckDomain: Output<String>? = null, healthCheckEnabled: Output<Boolean>? = null, healthCheckHttpCodes: Output<List<String>>? = null, healthCheckInterval: Output<Int>? = null, healthCheckType: Output<String>? = null, healthCheckUrl: Output<String>? = null, healthyThreshold: Output<Int>? = null, httpCheckMethod: Output<String>? = null, unhealthyThreshold: Output<Int>? = null)
Functions
Properties
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
.