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