
commonMain.aws.sdk.kotlin.services.mediaconvert.model.MpdScte35Esam.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
import kotlin.collections.List
/**
* Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
*/
public sealed class MpdScte35Esam {
public abstract val value: kotlin.String
public object Insert : aws.sdk.kotlin.services.mediaconvert.model.MpdScte35Esam() {
override val value: kotlin.String = "INSERT"
override fun toString(): kotlin.String = "Insert"
}
public object None : aws.sdk.kotlin.services.mediaconvert.model.MpdScte35Esam() {
override val value: kotlin.String = "NONE"
override fun toString(): kotlin.String = "None"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.MpdScte35Esam() {
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.MpdScte35Esam = when (value) {
"INSERT" -> Insert
"NONE" -> None
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Insert,
None,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy