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

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

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

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

import kotlin.collections.List

/**
 * Optional. Choose the scan line type for this output. If you don't specify a value, MediaConvert will create a progressive output.
 */
public sealed class UncompressedInterlaceMode {
    public abstract val value: kotlin.String

    public object Interlaced : aws.sdk.kotlin.services.mediaconvert.model.UncompressedInterlaceMode() {
        override val value: kotlin.String = "INTERLACED"
        override fun toString(): kotlin.String = "Interlaced"
    }

    public object Progressive : aws.sdk.kotlin.services.mediaconvert.model.UncompressedInterlaceMode() {
        override val value: kotlin.String = "PROGRESSIVE"
        override fun toString(): kotlin.String = "Progressive"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.UncompressedInterlaceMode() {
        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.UncompressedInterlaceMode = when (value) {
            "INTERLACED" -> Interlaced
            "PROGRESSIVE" -> Progressive
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Interlaced,
            Progressive,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy