All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus.kt Maven / Gradle / Ivy

There is a newer version: 1.3.99
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.sagemaker.model



sealed class FeatureGroupStatus {

    abstract val value: kotlin.String

    object Created : aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus() {
        override val value: kotlin.String = "Created"
        override fun toString(): kotlin.String = value
    }

    object CreateFailed : aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus() {
        override val value: kotlin.String = "CreateFailed"
        override fun toString(): kotlin.String = value
    }

    object Creating : aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus() {
        override val value: kotlin.String = "Creating"
        override fun toString(): kotlin.String = value
    }

    object DeleteFailed : aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus() {
        override val value: kotlin.String = "DeleteFailed"
        override fun toString(): kotlin.String = value
    }

    object Deleting : aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus() {
        override val value: kotlin.String = "Deleting"
        override fun toString(): kotlin.String = value
    }

    data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.sagemaker.model.FeatureGroupStatus() {
        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.FeatureGroupStatus = when(str) {
            "Created" -> Created
            "CreateFailed" -> CreateFailed
            "Creating" -> Creating
            "DeleteFailed" -> DeleteFailed
            "Deleting" -> Deleting
            else -> SdkUnknown(str)
        }

        /**
         * Get a list of all possible variants
         */
        fun values(): kotlin.collections.List = listOf(
            Created,
            CreateFailed,
            Creating,
            DeleteFailed,
            Deleting
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy