com.pulumi.awsnative.ec2.kotlin.enums.Ec2FleetCapacityRebalanceReplacementStrategy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.ec2.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The replacement strategy to use. Only available for fleets of type `maintain` .
* `launch` - EC2 Fleet launches a replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet. EC2 Fleet does not terminate the instances that receive a rebalance notification. You can terminate the old instances, or you can leave them running. You are charged for all instances while they are running.
* `launch-before-terminate` - EC2 Fleet launches a replacement Spot Instance when a rebalance notification is emitted for an existing Spot Instance in the fleet, and then, after a delay that you specify (in `TerminationDelay` ), terminates the instances that received a rebalance notification.
*/
public enum class Ec2FleetCapacityRebalanceReplacementStrategy(
public val javaValue: com.pulumi.awsnative.ec2.enums.Ec2FleetCapacityRebalanceReplacementStrategy,
) : ConvertibleToJava {
Launch(com.pulumi.awsnative.ec2.enums.Ec2FleetCapacityRebalanceReplacementStrategy.Launch),
LaunchBeforeTerminate(com.pulumi.awsnative.ec2.enums.Ec2FleetCapacityRebalanceReplacementStrategy.LaunchBeforeTerminate),
;
override fun toJava(): com.pulumi.awsnative.ec2.enums.Ec2FleetCapacityRebalanceReplacementStrategy = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.enums.Ec2FleetCapacityRebalanceReplacementStrategy): Ec2FleetCapacityRebalanceReplacementStrategy =
Ec2FleetCapacityRebalanceReplacementStrategy.values().first { it.javaValue == javaType }
}
}