com.pulumi.aws.alb.kotlin.outputs.TargetGroupTargetGroupHealthUnhealthyStateRouting.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.alb.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property minimumHealthyTargetsCount The minimum number of targets that must be healthy. If the number of healthy targets is below this value, send traffic to all targets, including unhealthy targets. The possible values are `1` to the maximum number of targets. The default is `1`.
* @property minimumHealthyTargetsPercentage The minimum percentage of targets that must be healthy. If the percentage of healthy targets is below this value, send traffic to all targets, including unhealthy targets. The possible values are `off` or an integer from `1` to `100`. The default is `off`.
*/
public data class TargetGroupTargetGroupHealthUnhealthyStateRouting(
public val minimumHealthyTargetsCount: Int? = null,
public val minimumHealthyTargetsPercentage: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.alb.outputs.TargetGroupTargetGroupHealthUnhealthyStateRouting): TargetGroupTargetGroupHealthUnhealthyStateRouting =
TargetGroupTargetGroupHealthUnhealthyStateRouting(
minimumHealthyTargetsCount = javaType.minimumHealthyTargetsCount().map({ args0 ->
args0
}).orElse(null),
minimumHealthyTargetsPercentage = javaType.minimumHealthyTargetsPercentage().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy