commonMain.aws.sdk.kotlin.services.glue.model.BlueprintStatus.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 BlueprintStatus {
public abstract val value: kotlin.String
public object Active : aws.sdk.kotlin.services.glue.model.BlueprintStatus() {
override val value: kotlin.String = "ACTIVE"
override fun toString(): kotlin.String = "Active"
}
public object Creating : aws.sdk.kotlin.services.glue.model.BlueprintStatus() {
override val value: kotlin.String = "CREATING"
override fun toString(): kotlin.String = "Creating"
}
public object Failed : aws.sdk.kotlin.services.glue.model.BlueprintStatus() {
override val value: kotlin.String = "FAILED"
override fun toString(): kotlin.String = "Failed"
}
public object Updating : aws.sdk.kotlin.services.glue.model.BlueprintStatus() {
override val value: kotlin.String = "UPDATING"
override fun toString(): kotlin.String = "Updating"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.glue.model.BlueprintStatus() {
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.BlueprintStatus = when (value) {
"ACTIVE" -> Active
"CREATING" -> Creating
"FAILED" -> Failed
"UPDATING" -> Updating
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Active,
Creating,
Failed,
Updating,
)
}
}