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