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

commonMain.aws.sdk.kotlin.services.textract.model.AdapterVersionStatus.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.textract.model

import kotlin.collections.List

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

    public object Active : aws.sdk.kotlin.services.textract.model.AdapterVersionStatus() {
        override val value: kotlin.String = "ACTIVE"
        override fun toString(): kotlin.String = "Active"
    }

    public object AtRisk : aws.sdk.kotlin.services.textract.model.AdapterVersionStatus() {
        override val value: kotlin.String = "AT_RISK"
        override fun toString(): kotlin.String = "AtRisk"
    }

    public object CreationError : aws.sdk.kotlin.services.textract.model.AdapterVersionStatus() {
        override val value: kotlin.String = "CREATION_ERROR"
        override fun toString(): kotlin.String = "CreationError"
    }

    public object CreationInProgress : aws.sdk.kotlin.services.textract.model.AdapterVersionStatus() {
        override val value: kotlin.String = "CREATION_IN_PROGRESS"
        override fun toString(): kotlin.String = "CreationInProgress"
    }

    public object Deprecated : aws.sdk.kotlin.services.textract.model.AdapterVersionStatus() {
        override val value: kotlin.String = "DEPRECATED"
        override fun toString(): kotlin.String = "Deprecated"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.textract.model.AdapterVersionStatus() {
        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.textract.model.AdapterVersionStatus = when (value) {
            "ACTIVE" -> Active
            "AT_RISK" -> AtRisk
            "CREATION_ERROR" -> CreationError
            "CREATION_IN_PROGRESS" -> CreationInProgress
            "DEPRECATED" -> Deprecated
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            Active,
            AtRisk,
            CreationError,
            CreationInProgress,
            Deprecated,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy