com.pulumi.awsnative.ivs.kotlin.enums.ChannelLatencyMode.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.ivs.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Channel latency mode.
*/
public enum class ChannelLatencyMode(
public val javaValue: com.pulumi.awsnative.ivs.enums.ChannelLatencyMode,
) : ConvertibleToJava {
Normal(com.pulumi.awsnative.ivs.enums.ChannelLatencyMode.Normal),
Low(com.pulumi.awsnative.ivs.enums.ChannelLatencyMode.Low),
;
override fun toJava(): com.pulumi.awsnative.ivs.enums.ChannelLatencyMode = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ivs.enums.ChannelLatencyMode): ChannelLatencyMode = ChannelLatencyMode.values().first { it.javaValue == javaType }
}
}