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

commonMain.aws.sdk.kotlin.services.mediaconvert.model.M2tsRateMode.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

/**
 * When set to CBR, inserts null packets into transport stream to fill specified bitrate. When set to VBR, the bitrate setting acts as the maximum bitrate, but the output will not be padded up to that bitrate.
 */
public sealed class M2tsRateMode {
    public abstract val value: kotlin.String

    public object Cbr : aws.sdk.kotlin.services.mediaconvert.model.M2tsRateMode() {
        override val value: kotlin.String = "CBR"
        override fun toString(): kotlin.String = "Cbr"
    }

    public object Vbr : aws.sdk.kotlin.services.mediaconvert.model.M2tsRateMode() {
        override val value: kotlin.String = "VBR"
        override fun toString(): kotlin.String = "Vbr"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.M2tsRateMode() {
        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.M2tsRateMode = when (value) {
            "CBR" -> Cbr
            "VBR" -> Vbr
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            Cbr,
            Vbr,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy