com.pulumi.awsnative.vpclattice.kotlin.enums.ServiceNetworkServiceAssociationStatus.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.vpclattice.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The status of the association between the service network and the service.
*/
public enum class ServiceNetworkServiceAssociationStatus(
public val javaValue: com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus,
) : ConvertibleToJava {
CreateInProgress(com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus.CreateInProgress),
Active(com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus.Active),
DeleteInProgress(com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus.DeleteInProgress),
CreateFailed(com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus.CreateFailed),
DeleteFailed(com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus.DeleteFailed),
;
override fun toJava(): com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.vpclattice.enums.ServiceNetworkServiceAssociationStatus): ServiceNetworkServiceAssociationStatus =
ServiceNetworkServiceAssociationStatus.values().first { it.javaValue == javaType }
}
}