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

commonMain.aws.sdk.kotlin.services.appstream.model.UserStackAssociationErrorCode.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.appstream.model

import kotlin.collections.List

sealed class UserStackAssociationErrorCode {

    abstract val value: kotlin.String

    object DirectoryNotFound : aws.sdk.kotlin.services.appstream.model.UserStackAssociationErrorCode() {
        override val value: kotlin.String = "DIRECTORY_NOT_FOUND"
        override fun toString(): kotlin.String = value
    }

    object InternalError : aws.sdk.kotlin.services.appstream.model.UserStackAssociationErrorCode() {
        override val value: kotlin.String = "INTERNAL_ERROR"
        override fun toString(): kotlin.String = value
    }

    object StackNotFound : aws.sdk.kotlin.services.appstream.model.UserStackAssociationErrorCode() {
        override val value: kotlin.String = "STACK_NOT_FOUND"
        override fun toString(): kotlin.String = value
    }

    object UserNameNotFound : aws.sdk.kotlin.services.appstream.model.UserStackAssociationErrorCode() {
        override val value: kotlin.String = "USER_NAME_NOT_FOUND"
        override fun toString(): kotlin.String = value
    }

    data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.appstream.model.UserStackAssociationErrorCode() {
        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.appstream.model.UserStackAssociationErrorCode = when(str) {
            "DIRECTORY_NOT_FOUND" -> DirectoryNotFound
            "INTERNAL_ERROR" -> InternalError
            "STACK_NOT_FOUND" -> StackNotFound
            "USER_NAME_NOT_FOUND" -> UserNameNotFound
            else -> SdkUnknown(str)
        }

        /**
         * Get a list of all possible variants
         */
        fun values(): kotlin.collections.List = listOf(
            DirectoryNotFound,
            InternalError,
            StackNotFound,
            UserNameNotFound
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy