commonMain.aws.sdk.kotlin.services.mediaconvert.model.M2TsScte35Source.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert Show documentation
Show all versions of mediaconvert Show documentation
The AWS SDK for Kotlin client for MediaConvert
// 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 (PASSTHROUGH) if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None (NONE) if you don't want SCTE-35 markers in this output. For SCTE-35 markers from an ESAM XML document-- Choose None (NONE). Also provide the ESAM XML as a string in the setting Signal processing notification XML (sccXml). Also enable ESAM SCTE-35 (include the property scte35Esam).
*/
public sealed class M2TsScte35Source {
public abstract val value: kotlin.String
public object None : aws.sdk.kotlin.services.mediaconvert.model.M2TsScte35Source() {
override val value: kotlin.String = "NONE"
override fun toString(): kotlin.String = value
}
public object Passthrough : aws.sdk.kotlin.services.mediaconvert.model.M2TsScte35Source() {
override val value: kotlin.String = "PASSTHROUGH"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.M2TsScte35Source() {
override fun toString(): kotlin.String = value
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.mediaconvert.model.M2TsScte35Source = when(str) {
"NONE" -> None
"PASSTHROUGH" -> Passthrough
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
None,
Passthrough
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy