![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.mediatailor.kotlin.enums.PlaybackConfigurationAvailSuppressionMode.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediatailor.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window. When Mode is set to AFTER_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks that are within the live edge plus the avail suppression value.
*/
public enum class PlaybackConfigurationAvailSuppressionMode(
public val javaValue: com.pulumi.awsnative.mediatailor.enums.PlaybackConfigurationAvailSuppressionMode,
) :
ConvertibleToJava {
Off(com.pulumi.awsnative.mediatailor.enums.PlaybackConfigurationAvailSuppressionMode.Off),
BehindLiveEdge(com.pulumi.awsnative.mediatailor.enums.PlaybackConfigurationAvailSuppressionMode.BehindLiveEdge),
AfterLiveEdge(com.pulumi.awsnative.mediatailor.enums.PlaybackConfigurationAvailSuppressionMode.AfterLiveEdge),
;
override fun toJava(): com.pulumi.awsnative.mediatailor.enums.PlaybackConfigurationAvailSuppressionMode = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediatailor.enums.PlaybackConfigurationAvailSuppressionMode): PlaybackConfigurationAvailSuppressionMode =
PlaybackConfigurationAvailSuppressionMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy