commonMain.aws.sdk.kotlin.services.appstream.model.SessionState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appstream-jvm Show documentation
Show all versions of appstream-jvm Show documentation
The AWS SDK for Kotlin client for AppStream
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appstream.model
import kotlin.collections.List
/**
* Possible values for the state of a streaming session.
*/
sealed class SessionState {
abstract val value: kotlin.String
object Active : aws.sdk.kotlin.services.appstream.model.SessionState() {
override val value: kotlin.String = "ACTIVE"
override fun toString(): kotlin.String = value
}
object Expired : aws.sdk.kotlin.services.appstream.model.SessionState() {
override val value: kotlin.String = "EXPIRED"
override fun toString(): kotlin.String = value
}
object Pending : aws.sdk.kotlin.services.appstream.model.SessionState() {
override val value: kotlin.String = "PENDING"
override fun toString(): kotlin.String = value
}
data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.appstream.model.SessionState() {
override fun toString(): kotlin.String = value
}
companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.appstream.model.SessionState = when(str) {
"ACTIVE" -> Active
"EXPIRED" -> Expired
"PENDING" -> Pending
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
fun values(): kotlin.collections.List = listOf(
Active,
Expired,
Pending
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy