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

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

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

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

import kotlin.collections.List

/**
 * Specify whether to flag this audio track as descriptive video service (DVS) in your HLS parent manifest. When you choose Flag (FLAG), MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag (DONT_FLAG), MediaConvert leaves this parameter out. The DVS flag can help with accessibility on Apple devices. For more information, see the Apple documentation.
 */
public sealed class CmfcDescriptiveVideoServiceFlag {

    public abstract val value: kotlin.String

    public object DontFlag : aws.sdk.kotlin.services.mediaconvert.model.CmfcDescriptiveVideoServiceFlag() {
        override val value: kotlin.String = "DONT_FLAG"
        override fun toString(): kotlin.String = value
    }

    public object Flag : aws.sdk.kotlin.services.mediaconvert.model.CmfcDescriptiveVideoServiceFlag() {
        override val value: kotlin.String = "FLAG"
        override fun toString(): kotlin.String = value
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.CmfcDescriptiveVideoServiceFlag() {
        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.CmfcDescriptiveVideoServiceFlag = when(str) {
            "DONT_FLAG" -> DontFlag
            "FLAG" -> Flag
            else -> SdkUnknown(str)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy