com.pulumi.awsnative.connect.kotlin.enums.EvaluationFormStatus.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.connect.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The status of the evaluation form.
* *Allowed values*: ``DRAFT`` | ``ACTIVE``
*/
public enum class EvaluationFormStatus(
public val javaValue: com.pulumi.awsnative.connect.enums.EvaluationFormStatus,
) : ConvertibleToJava {
Draft(com.pulumi.awsnative.connect.enums.EvaluationFormStatus.Draft),
Active(com.pulumi.awsnative.connect.enums.EvaluationFormStatus.Active),
;
override fun toJava(): com.pulumi.awsnative.connect.enums.EvaluationFormStatus = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.connect.enums.EvaluationFormStatus): EvaluationFormStatus = EvaluationFormStatus.values().first { it.javaValue == javaType }
}
}