commonMain.aws.sdk.kotlin.services.gamelift.model.ContainerMountPointAccessLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gamelift-jvm Show documentation
Show all versions of gamelift-jvm Show documentation
The AWS SDK for Kotlin client for GameLift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.gamelift.model
import kotlin.collections.List
public sealed class ContainerMountPointAccessLevel {
public abstract val value: kotlin.String
public object ReadAndWrite : aws.sdk.kotlin.services.gamelift.model.ContainerMountPointAccessLevel() {
override val value: kotlin.String = "READ_AND_WRITE"
override fun toString(): kotlin.String = "ReadAndWrite"
}
public object ReadOnly : aws.sdk.kotlin.services.gamelift.model.ContainerMountPointAccessLevel() {
override val value: kotlin.String = "READ_ONLY"
override fun toString(): kotlin.String = "ReadOnly"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.gamelift.model.ContainerMountPointAccessLevel() {
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.gamelift.model.ContainerMountPointAccessLevel = when (value) {
"READ_AND_WRITE" -> ReadAndWrite
"READ_ONLY" -> ReadOnly
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
ReadAndWrite,
ReadOnly,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy