commonMain.aws.sdk.kotlin.services.mediaconvert.model.Eac3LfeControl.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
/**
* When encoding 3/2 audio, controls whether the LFE channel is enabled
*/
public sealed class Eac3LfeControl {
public abstract val value: kotlin.String
public object Lfe : aws.sdk.kotlin.services.mediaconvert.model.Eac3LfeControl() {
override val value: kotlin.String = "LFE"
override fun toString(): kotlin.String = "Lfe"
}
public object NoLfe : aws.sdk.kotlin.services.mediaconvert.model.Eac3LfeControl() {
override val value: kotlin.String = "NO_LFE"
override fun toString(): kotlin.String = "NoLfe"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.Eac3LfeControl() {
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.Eac3LfeControl = when (value) {
"LFE" -> Lfe
"NO_LFE" -> NoLfe
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Lfe,
NoLfe,
)
}
}