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

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

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

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

import kotlin.collections.List

/**
 * When set to SINGLE_FILE, emits program as a single media resource (.ts) file, uses #EXT-X-BYTERANGE tags to index segment for playback.
 */
public sealed class HlsSegmentControl {
    public abstract val value: kotlin.String

    public object SegmentedFiles : aws.sdk.kotlin.services.mediaconvert.model.HlsSegmentControl() {
        override val value: kotlin.String = "SEGMENTED_FILES"
        override fun toString(): kotlin.String = "SegmentedFiles"
    }

    public object SingleFile : aws.sdk.kotlin.services.mediaconvert.model.HlsSegmentControl() {
        override val value: kotlin.String = "SINGLE_FILE"
        override fun toString(): kotlin.String = "SingleFile"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.HlsSegmentControl() {
        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.HlsSegmentControl = when (value) {
            "SEGMENTED_FILES" -> SegmentedFiles
            "SINGLE_FILE" -> SingleFile
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            SegmentedFiles,
            SingleFile,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy