
commonMain.aws.sdk.kotlin.services.mediaconvert.model.DashIsoSegmentControl.kt Maven / Gradle / Ivy
// 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, a single output file is generated, which is internally segmented using the Fragment Length and Segment Length. When set to SEGMENTED_FILES, separate segment files will be created.
*/
public sealed class DashIsoSegmentControl {
public abstract val value: kotlin.String
public object SegmentedFiles : aws.sdk.kotlin.services.mediaconvert.model.DashIsoSegmentControl() {
override val value: kotlin.String = "SEGMENTED_FILES"
override fun toString(): kotlin.String = "SegmentedFiles"
}
public object SingleFile : aws.sdk.kotlin.services.mediaconvert.model.DashIsoSegmentControl() {
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.DashIsoSegmentControl() {
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.DashIsoSegmentControl = 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 - 2025 Weber Informatics LLC | Privacy Policy