commonMain.aws.sdk.kotlin.services.polly.model.TaskStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polly-jvm Show documentation
Show all versions of polly-jvm Show documentation
The AWS SDK for Kotlin client for Polly
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.polly.model
import kotlin.collections.List
public sealed class TaskStatus {
public abstract val value: kotlin.String
public object Completed : aws.sdk.kotlin.services.polly.model.TaskStatus() {
override val value: kotlin.String = "completed"
override fun toString(): kotlin.String = "Completed"
}
public object Failed : aws.sdk.kotlin.services.polly.model.TaskStatus() {
override val value: kotlin.String = "failed"
override fun toString(): kotlin.String = "Failed"
}
public object InProgress : aws.sdk.kotlin.services.polly.model.TaskStatus() {
override val value: kotlin.String = "inProgress"
override fun toString(): kotlin.String = "InProgress"
}
public object Scheduled : aws.sdk.kotlin.services.polly.model.TaskStatus() {
override val value: kotlin.String = "scheduled"
override fun toString(): kotlin.String = "Scheduled"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.polly.model.TaskStatus() {
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.polly.model.TaskStatus = when (value) {
"completed" -> Completed
"failed" -> Failed
"inProgress" -> InProgress
"scheduled" -> Scheduled
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,
InProgress,
Scheduled,
)
}
}