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

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

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

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

import kotlin.collections.List

/**
 * Controls what buffer model to use for accurate interleaving. If set to MULTIPLEX, use multiplex buffer model. If set to NONE, this can lead to lower latency, but low-memory devices may not be able to play back the stream without interruptions.
 */
public sealed class M2tsBufferModel {
    public abstract val value: kotlin.String

    public object Multiplex : aws.sdk.kotlin.services.mediaconvert.model.M2tsBufferModel() {
        override val value: kotlin.String = "MULTIPLEX"
        override fun toString(): kotlin.String = "Multiplex"
    }

    public object None : aws.sdk.kotlin.services.mediaconvert.model.M2tsBufferModel() {
        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.M2tsBufferModel() {
        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.M2tsBufferModel = when (value) {
            "MULTIPLEX" -> Multiplex
            "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(
            Multiplex,
            None,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy