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

commonMain.aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.route53resolver.model

import kotlin.collections.List

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

    public object ActionNeeded : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        override val value: kotlin.String = "ACTION_NEEDED"
        override fun toString(): kotlin.String = "ActionNeeded"
    }

    public object Creating : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        override val value: kotlin.String = "CREATING"
        override fun toString(): kotlin.String = "Creating"
    }

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

    public object FailedCreation : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        override val value: kotlin.String = "FAILED_CREATION"
        override fun toString(): kotlin.String = "FailedCreation"
    }

    public object FailedDeletion : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        override val value: kotlin.String = "FAILED_DELETION"
        override fun toString(): kotlin.String = "FailedDeletion"
    }

    public object Operational : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        override val value: kotlin.String = "OPERATIONAL"
        override fun toString(): kotlin.String = "Operational"
    }

    public object Updating : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        override val value: kotlin.String = "UPDATING"
        override fun toString(): kotlin.String = "Updating"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.route53resolver.model.OutpostResolverStatus() {
        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.route53resolver.model.OutpostResolverStatus = when (value) {
            "ACTION_NEEDED" -> ActionNeeded
            "CREATING" -> Creating
            "DELETING" -> Deleting
            "FAILED_CREATION" -> FailedCreation
            "FAILED_DELETION" -> FailedDeletion
            "OPERATIONAL" -> Operational
            "UPDATING" -> Updating
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            ActionNeeded,
            Creating,
            Deleting,
            FailedCreation,
            FailedDeletion,
            Operational,
            Updating,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy