All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosSurroundExMode.kt Maven / Gradle / Ivy

There is a newer version: 1.3.99
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.mediaconvert.model

import kotlin.collections.List

/**
 * Specify whether your input audio has an additional center rear surround channel matrix encoded into your left and right surround channels.
 */
public sealed class Eac3AtmosSurroundExMode {

    public abstract val value: kotlin.String

    public object Disabled : aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosSurroundExMode() {
        override val value: kotlin.String = "DISABLED"
        override fun toString(): kotlin.String = value
    }

    public object Enabled : aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosSurroundExMode() {
        override val value: kotlin.String = "ENABLED"
        override fun toString(): kotlin.String = value
    }

    public object NotIndicated : aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosSurroundExMode() {
        override val value: kotlin.String = "NOT_INDICATED"
        override fun toString(): kotlin.String = value
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.Eac3AtmosSurroundExMode() {
        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.Eac3AtmosSurroundExMode = when(str) {
            "DISABLED" -> Disabled
            "ENABLED" -> Enabled
            "NOT_INDICATED" -> NotIndicated
            else -> SdkUnknown(str)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = listOf(
            Disabled,
            Enabled,
            NotIndicated
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy