commonMain.aws.sdk.kotlin.services.transfer.model.CustomStepStatus.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 CustomStepStatus {
public abstract val value: kotlin.String
public object Failure : aws.sdk.kotlin.services.transfer.model.CustomStepStatus() {
override val value: kotlin.String = "FAILURE"
override fun toString(): kotlin.String = "Failure"
}
public object Success : aws.sdk.kotlin.services.transfer.model.CustomStepStatus() {
override val value: kotlin.String = "SUCCESS"
override fun toString(): kotlin.String = "Success"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.transfer.model.CustomStepStatus() {
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.CustomStepStatus = when (value) {
"FAILURE" -> Failure
"SUCCESS" -> Success
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Failure,
Success,
)
}
}