commonMain.aws.sdk.kotlin.services.sagemakeredge.model.DeploymentStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakeredge Show documentation
Show all versions of sagemakeredge Show documentation
The AWS SDK for Kotlin client for Sagemaker Edge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakeredge.model
import kotlin.collections.List
public sealed class DeploymentStatus {
public abstract val value: kotlin.String
public object Fail : aws.sdk.kotlin.services.sagemakeredge.model.DeploymentStatus() {
override val value: kotlin.String = "FAIL"
override fun toString(): kotlin.String = "Fail"
}
public object Success : aws.sdk.kotlin.services.sagemakeredge.model.DeploymentStatus() {
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.sagemakeredge.model.DeploymentStatus() {
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.sagemakeredge.model.DeploymentStatus = when (value) {
"FAIL" -> Fail
"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(
Fail,
Success,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy