commonMain.aws.sdk.kotlin.services.redshift.model.AquaStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import kotlin.collections.List
public sealed class AquaStatus {
public abstract val value: kotlin.String
public object Applying : aws.sdk.kotlin.services.redshift.model.AquaStatus() {
override val value: kotlin.String = "applying"
override fun toString(): kotlin.String = "Applying"
}
public object Disabled : aws.sdk.kotlin.services.redshift.model.AquaStatus() {
override val value: kotlin.String = "disabled"
override fun toString(): kotlin.String = "Disabled"
}
public object Enabled : aws.sdk.kotlin.services.redshift.model.AquaStatus() {
override val value: kotlin.String = "enabled"
override fun toString(): kotlin.String = "Enabled"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.redshift.model.AquaStatus() {
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.redshift.model.AquaStatus = when (value) {
"applying" -> Applying
"disabled" -> Disabled
"enabled" -> Enabled
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Applying,
Disabled,
Enabled,
)
}
}