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

commonMain.aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.sagemakergeospatial.model

import kotlin.collections.List

public sealed class VectorEnrichmentJobStatus {
    public abstract val value: kotlin.String

    public object Completed : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "COMPLETED"
        override fun toString(): kotlin.String = "Completed"
    }

    public object Deleted : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "DELETED"
        override fun toString(): kotlin.String = "Deleted"
    }

    public object Deleting : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "DELETING"
        override fun toString(): kotlin.String = "Deleting"
    }

    public object Failed : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "FAILED"
        override fun toString(): kotlin.String = "Failed"
    }

    public object Initializing : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "INITIALIZING"
        override fun toString(): kotlin.String = "Initializing"
    }

    public object InProgress : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "IN_PROGRESS"
        override fun toString(): kotlin.String = "InProgress"
    }

    public object Stopped : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "STOPPED"
        override fun toString(): kotlin.String = "Stopped"
    }

    public object Stopping : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        override val value: kotlin.String = "STOPPING"
        override fun toString(): kotlin.String = "Stopping"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.sagemakergeospatial.model.VectorEnrichmentJobStatus() {
        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.sagemakergeospatial.model.VectorEnrichmentJobStatus = when (value) {
            "COMPLETED" -> Completed
            "DELETED" -> Deleted
            "DELETING" -> Deleting
            "FAILED" -> Failed
            "INITIALIZING" -> Initializing
            "IN_PROGRESS" -> InProgress
            "STOPPED" -> Stopped
            "STOPPING" -> Stopping
            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,
            Deleted,
            Deleting,
            Failed,
            Initializing,
            InProgress,
            Stopped,
            Stopping,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy