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

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

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

import kotlin.collections.List

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

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

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

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

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

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

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

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

        private val values: kotlin.collections.List = listOf(
            CreateComplete,
            CreateFailed,
            CreateInProgress,
            DeleteFailed,
            DeleteInProgress,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy