
com.pulumi.awsnative.mediatailor.kotlin.outputs.PlaybackConfigurationManifestProcessingRules.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediatailor.kotlin.outputs
import kotlin.Suppress
/**
* The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
* @property adMarkerPassthrough For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest. No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
*/
public data class PlaybackConfigurationManifestProcessingRules(
public val adMarkerPassthrough: PlaybackConfigurationAdMarkerPassthrough? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediatailor.outputs.PlaybackConfigurationManifestProcessingRules): PlaybackConfigurationManifestProcessingRules = PlaybackConfigurationManifestProcessingRules(
adMarkerPassthrough = javaType.adMarkerPassthrough().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.mediatailor.kotlin.outputs.PlaybackConfigurationAdMarkerPassthrough.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy