commonMain.aws.sdk.kotlin.services.mediaconvert.model.CmfcScte35Esam.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert-jvm Show documentation
Show all versions of mediaconvert-jvm 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
/**
* 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 CmfcScte35Esam {
public abstract val value: kotlin.String
public object Insert : aws.sdk.kotlin.services.mediaconvert.model.CmfcScte35Esam() {
override val value: kotlin.String = "INSERT"
override fun toString(): kotlin.String = "Insert"
}
public object None : aws.sdk.kotlin.services.mediaconvert.model.CmfcScte35Esam() {
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.CmfcScte35Esam() {
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.CmfcScte35Esam = 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,
)
}
}