commonMain.aws.sdk.kotlin.services.mediaconvert.model.Xavc4KProfileQualityTuningLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert Show documentation
Show all versions of mediaconvert 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
/**
* Optional. Use Quality tuning level (qualityTuningLevel) to choose how you want to trade off encoding speed for output video quality. The default behavior is faster, lower quality, single-pass encoding.
*/
public sealed class Xavc4KProfileQualityTuningLevel {
public abstract val value: kotlin.String
public object MultiPassHq : aws.sdk.kotlin.services.mediaconvert.model.Xavc4KProfileQualityTuningLevel() {
override val value: kotlin.String = "MULTI_PASS_HQ"
override fun toString(): kotlin.String = value
}
public object SinglePass : aws.sdk.kotlin.services.mediaconvert.model.Xavc4KProfileQualityTuningLevel() {
override val value: kotlin.String = "SINGLE_PASS"
override fun toString(): kotlin.String = value
}
public object SinglePassHq : aws.sdk.kotlin.services.mediaconvert.model.Xavc4KProfileQualityTuningLevel() {
override val value: kotlin.String = "SINGLE_PASS_HQ"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.Xavc4KProfileQualityTuningLevel() {
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.Xavc4KProfileQualityTuningLevel = when(str) {
"MULTI_PASS_HQ" -> MultiPassHq
"SINGLE_PASS" -> SinglePass
"SINGLE_PASS_HQ" -> SinglePassHq
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
MultiPassHq,
SinglePass,
SinglePassHq
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy