aws.sdk.kotlin.services.sagemaker.model.EdgePresetDeploymentStatus.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemaker.model
sealed class EdgePresetDeploymentStatus {
abstract val value: kotlin.String
object Completed : aws.sdk.kotlin.services.sagemaker.model.EdgePresetDeploymentStatus() {
override val value: kotlin.String = "COMPLETED"
override fun toString(): kotlin.String = value
}
object Failed : aws.sdk.kotlin.services.sagemaker.model.EdgePresetDeploymentStatus() {
override val value: kotlin.String = "FAILED"
override fun toString(): kotlin.String = value
}
data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.sagemaker.model.EdgePresetDeploymentStatus() {
override fun toString(): kotlin.String = value
}
companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.sagemaker.model.EdgePresetDeploymentStatus = when(str) {
"COMPLETED" -> Completed
"FAILED" -> Failed
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
fun values(): kotlin.collections.List = listOf(
Completed,
Failed
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy