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

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

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

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

import kotlin.collections.List

/**
 * Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated as follows: either the program date and time are initialized using the input timecode source, or the time is initialized using the input timecode source and the date is initialized using the timestamp_offset.
 */
public sealed class HlsProgramDateTime {
    public abstract val value: kotlin.String

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

    public object Include : aws.sdk.kotlin.services.mediaconvert.model.HlsProgramDateTime() {
        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.HlsProgramDateTime() {
        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.HlsProgramDateTime = 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