
commonMain.aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosBitstreamMode.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
import kotlin.collections.List
/**
* Specify the bitstream mode for the E-AC-3 stream that the encoder emits. For more information about the EAC3 bitstream mode, see ATSC A/52-2012 (Annex E).
*/
public sealed class Eac3AtmosBitstreamMode {
public abstract val value: kotlin.String
public object CompleteMain : aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosBitstreamMode() {
override val value: kotlin.String = "COMPLETE_MAIN"
override fun toString(): kotlin.String = "CompleteMain"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosBitstreamMode() {
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.Eac3AtmosBitstreamMode = when (value) {
"COMPLETE_MAIN" -> CompleteMain
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
CompleteMain,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy