commonMain.aws.sdk.kotlin.services.mediaconvert.model.HlsOfflineEncrypted.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert Show documentation
Show all versions of mediaconvert Show documentation
The AWS SDK for Kotlin client for MediaConvert
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
import kotlin.collections.List
/**
* Enable this setting to insert the EXT-X-SESSION-KEY element into the master playlist. This allows for offline Apple HLS FairPlay content protection.
*/
public sealed class HlsOfflineEncrypted {
public abstract val value: kotlin.String
public object Disabled : aws.sdk.kotlin.services.mediaconvert.model.HlsOfflineEncrypted() {
override val value: kotlin.String = "DISABLED"
override fun toString(): kotlin.String = value
}
public object Enabled : aws.sdk.kotlin.services.mediaconvert.model.HlsOfflineEncrypted() {
override val value: kotlin.String = "ENABLED"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.HlsOfflineEncrypted() {
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.HlsOfflineEncrypted = when(str) {
"DISABLED" -> Disabled
"ENABLED" -> Enabled
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
Disabled,
Enabled
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy