All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.mediaconvert.model.M3u8Scte35Source.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.mediaconvert.model

import kotlin.collections.List

/**
 * For SCTE-35 markers from your input-- Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don't want SCTE-35 markers in this output. For SCTE-35 markers from an ESAM XML document-- Choose None if you don't want manifest conditioning. Choose Passthrough and choose Ad markers if you do want manifest conditioning. In both cases, also provide the ESAM XML as a string in the setting Signal processing notification XML.
 */
public sealed class M3u8Scte35Source {
    public abstract val value: kotlin.String

    public object None : aws.sdk.kotlin.services.mediaconvert.model.M3u8Scte35Source() {
        override val value: kotlin.String = "NONE"
        override fun toString(): kotlin.String = "None"
    }

    public object Passthrough : aws.sdk.kotlin.services.mediaconvert.model.M3u8Scte35Source() {
        override val value: kotlin.String = "PASSTHROUGH"
        override fun toString(): kotlin.String = "Passthrough"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.M3u8Scte35Source() {
        override fun toString(): kotlin.String = "SdkUnknown($value)"
    }

    public companion object {
        /**
         * Convert a raw value to one of the sealed variants or [SdkUnknown]
         */
        public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.mediaconvert.model.M3u8Scte35Source = when (value) {
            "NONE" -> None
            "PASSTHROUGH" -> Passthrough
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            None,
            Passthrough,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy