commonMain.aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timestreamwrite-jvm Show documentation
Show all versions of timestreamwrite-jvm Show documentation
The AWS SDK for Kotlin client for Timestream Write
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.timestreamwrite.model
import kotlin.collections.List
public sealed class BatchLoadStatus {
public abstract val value: kotlin.String
public object Created : aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus() {
override val value: kotlin.String = "CREATED"
override fun toString(): kotlin.String = "Created"
}
public object Failed : aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus() {
override val value: kotlin.String = "FAILED"
override fun toString(): kotlin.String = "Failed"
}
public object InProgress : aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus() {
override val value: kotlin.String = "IN_PROGRESS"
override fun toString(): kotlin.String = "InProgress"
}
public object PendingResume : aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus() {
override val value: kotlin.String = "PENDING_RESUME"
override fun toString(): kotlin.String = "PendingResume"
}
public object ProgressStopped : aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus() {
override val value: kotlin.String = "PROGRESS_STOPPED"
override fun toString(): kotlin.String = "ProgressStopped"
}
public object Succeeded : aws.sdk.kotlin.services.timestreamwrite.model.BatchLoadStatus() {
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.timestreamwrite.model.BatchLoadStatus() {
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.timestreamwrite.model.BatchLoadStatus = when (value) {
"CREATED" -> Created
"FAILED" -> Failed
"IN_PROGRESS" -> InProgress
"PENDING_RESUME" -> PendingResume
"PROGRESS_STOPPED" -> ProgressStopped
"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(
Created,
Failed,
InProgress,
PendingResume,
ProgressStopped,
Succeeded,
)
}
}