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

commonMain.aws.sdk.kotlin.services.configservice.model.ConformancePackState.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.configservice.model

import kotlin.collections.List

sealed class ConformancePackState {

    abstract val value: kotlin.String

    object CreateComplete : aws.sdk.kotlin.services.configservice.model.ConformancePackState() {
        override val value: kotlin.String = "CREATE_COMPLETE"
        override fun toString(): kotlin.String = value
    }

    object CreateFailed : aws.sdk.kotlin.services.configservice.model.ConformancePackState() {
        override val value: kotlin.String = "CREATE_FAILED"
        override fun toString(): kotlin.String = value
    }

    object CreateInProgress : aws.sdk.kotlin.services.configservice.model.ConformancePackState() {
        override val value: kotlin.String = "CREATE_IN_PROGRESS"
        override fun toString(): kotlin.String = value
    }

    object DeleteFailed : aws.sdk.kotlin.services.configservice.model.ConformancePackState() {
        override val value: kotlin.String = "DELETE_FAILED"
        override fun toString(): kotlin.String = value
    }

    object DeleteInProgress : aws.sdk.kotlin.services.configservice.model.ConformancePackState() {
        override val value: kotlin.String = "DELETE_IN_PROGRESS"
        override fun toString(): kotlin.String = value
    }

    data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.configservice.model.ConformancePackState() {
        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.configservice.model.ConformancePackState = when(str) {
            "CREATE_COMPLETE" -> CreateComplete
            "CREATE_FAILED" -> CreateFailed
            "CREATE_IN_PROGRESS" -> CreateInProgress
            "DELETE_FAILED" -> DeleteFailed
            "DELETE_IN_PROGRESS" -> DeleteInProgress
            else -> SdkUnknown(str)
        }

        /**
         * Get a list of all possible variants
         */
        fun values(): kotlin.collections.List = listOf(
            CreateComplete,
            CreateFailed,
            CreateInProgress,
            DeleteFailed,
            DeleteInProgress
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy