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