com.pulumi.aws.alb.kotlin.outputs.TargetGroupTargetFailover.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.String
import kotlin.Suppress
/**
*
* @property onDeregistration Indicates how the GWLB handles existing flows when a target is deregistered. Possible values are `rebalance` and `no_rebalance`. Must match the attribute value set for `on_unhealthy`. Default: `no_rebalance`.
* @property onUnhealthy Indicates how the GWLB handles existing flows when a target is unhealthy. Possible values are `rebalance` and `no_rebalance`. Must match the attribute value set for `on_deregistration`. Default: `no_rebalance`.
*/
public data class TargetGroupTargetFailover(
public val onDeregistration: String,
public val onUnhealthy: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.alb.outputs.TargetGroupTargetFailover): TargetGroupTargetFailover = TargetGroupTargetFailover(
onDeregistration = javaType.onDeregistration(),
onUnhealthy = javaType.onUnhealthy(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy