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

commonMain.aws.sdk.kotlin.services.shield.model.SubscriptionState.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.shield.model

import kotlin.collections.List

sealed class SubscriptionState {

    abstract val value: kotlin.String

    object Active : aws.sdk.kotlin.services.shield.model.SubscriptionState() {
        override val value: kotlin.String = "ACTIVE"
        override fun toString(): kotlin.String = value
    }

    object Inactive : aws.sdk.kotlin.services.shield.model.SubscriptionState() {
        override val value: kotlin.String = "INACTIVE"
        override fun toString(): kotlin.String = value
    }

    data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.shield.model.SubscriptionState() {
        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.shield.model.SubscriptionState = when(str) {
            "ACTIVE" -> Active
            "INACTIVE" -> Inactive
            else -> SdkUnknown(str)
        }

        /**
         * Get a list of all possible variants
         */
        fun values(): kotlin.collections.List = listOf(
            Active,
            Inactive
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy