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

commonMain.aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus.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.redshift.model

import kotlin.collections.List

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

    public object Active : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "active"
        override fun toString(): kotlin.String = "Active"
    }

    public object Creating : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "creating"
        override fun toString(): kotlin.String = "Creating"
    }

    public object Deleting : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "deleting"
        override fun toString(): kotlin.String = "Deleting"
    }

    public object Failed : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "failed"
        override fun toString(): kotlin.String = "Failed"
    }

    public object Modifying : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "modifying"
        override fun toString(): kotlin.String = "Modifying"
    }

    public object NeedsAttention : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "needs_attention"
        override fun toString(): kotlin.String = "NeedsAttention"
    }

    public object Syncing : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        override val value: kotlin.String = "syncing"
        override fun toString(): kotlin.String = "Syncing"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.redshift.model.ZeroEtlIntegrationStatus() {
        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.redshift.model.ZeroEtlIntegrationStatus = when (value) {
            "active" -> Active
            "creating" -> Creating
            "deleting" -> Deleting
            "failed" -> Failed
            "modifying" -> Modifying
            "needs_attention" -> NeedsAttention
            "syncing" -> Syncing
            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,
            Creating,
            Deleting,
            Failed,
            Modifying,
            NeedsAttention,
            Syncing,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy