commonMain.aws.sdk.kotlin.services.wisdom.model.ImportJobStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisdom-jvm Show documentation
Show all versions of wisdom-jvm Show documentation
The AWS SDK for Kotlin client for Wisdom
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wisdom.model
import kotlin.collections.List
public sealed class ImportJobStatus {
public abstract val value: kotlin.String
public object Complete : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
override val value: kotlin.String = "COMPLETE"
override fun toString(): kotlin.String = "Complete"
}
public object Deleted : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
override val value: kotlin.String = "DELETED"
override fun toString(): kotlin.String = "Deleted"
}
public object DeleteFailed : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
override val value: kotlin.String = "DELETE_FAILED"
override fun toString(): kotlin.String = "DeleteFailed"
}
public object DeleteInProgress : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
override val value: kotlin.String = "DELETE_IN_PROGRESS"
override fun toString(): kotlin.String = "DeleteInProgress"
}
public object Failed : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
override val value: kotlin.String = "FAILED"
override fun toString(): kotlin.String = "Failed"
}
public object StartInProgress : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
override val value: kotlin.String = "START_IN_PROGRESS"
override fun toString(): kotlin.String = "StartInProgress"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.wisdom.model.ImportJobStatus() {
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.wisdom.model.ImportJobStatus = when (value) {
"COMPLETE" -> Complete
"DELETED" -> Deleted
"DELETE_FAILED" -> DeleteFailed
"DELETE_IN_PROGRESS" -> DeleteInProgress
"FAILED" -> Failed
"START_IN_PROGRESS" -> StartInProgress
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Complete,
Deleted,
DeleteFailed,
DeleteInProgress,
Failed,
StartInProgress,
)
}
}