commonMain.aws.sdk.kotlin.services.appstream.model.AppVisibility.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
public sealed class AppVisibility {
public abstract val value: kotlin.String
public object All : aws.sdk.kotlin.services.appstream.model.AppVisibility() {
override val value: kotlin.String = "ALL"
override fun toString(): kotlin.String = value
}
public object Associated : aws.sdk.kotlin.services.appstream.model.AppVisibility() {
override val value: kotlin.String = "ASSOCIATED"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.appstream.model.AppVisibility() {
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.appstream.model.AppVisibility = when(str) {
"ALL" -> All
"ASSOCIATED" -> Associated
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
All,
Associated
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy