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