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

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

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

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

import kotlin.collections.List

/**
 * Choose Include to have MediaConvert generate an HLS child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude.
 */
public sealed class CmfcIFrameOnlyManifest {
    public abstract val value: kotlin.String

    public object Exclude : aws.sdk.kotlin.services.mediaconvert.model.CmfcIFrameOnlyManifest() {
        override val value: kotlin.String = "EXCLUDE"
        override fun toString(): kotlin.String = "Exclude"
    }

    public object Include : aws.sdk.kotlin.services.mediaconvert.model.CmfcIFrameOnlyManifest() {
        override val value: kotlin.String = "INCLUDE"
        override fun toString(): kotlin.String = "Include"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.CmfcIFrameOnlyManifest() {
        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.CmfcIFrameOnlyManifest = when (value) {
            "EXCLUDE" -> Exclude
            "INCLUDE" -> Include
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Exclude,
            Include,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy