![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.media.kotlin.enums.StreamOptionsFlag.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.azurenative.media.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
public enum class StreamOptionsFlag(
public val javaValue: com.pulumi.azurenative.media.enums.StreamOptionsFlag,
) : ConvertibleToJava {
/**
* Live streaming with no special latency optimizations.
*/
Default(com.pulumi.azurenative.media.enums.StreamOptionsFlag.Default),
/**
* The live event provides lower end to end latency by reducing its internal buffers.
*/
LowLatency(com.pulumi.azurenative.media.enums.StreamOptionsFlag.LowLatency),
/**
* The live event is optimized for end to end latency. This option is only available for encoding live events with RTMP input. The outputs can be streamed using HLS or DASH formats. The outputs' archive or DVR rewind length is limited to 6 hours. Use "LowLatency" stream option for all other scenarios.
*/
LowLatencyV2(com.pulumi.azurenative.media.enums.StreamOptionsFlag.LowLatencyV2),
;
override fun toJava(): com.pulumi.azurenative.media.enums.StreamOptionsFlag = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.media.enums.StreamOptionsFlag): StreamOptionsFlag = StreamOptionsFlag.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy