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