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

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

    abstract val value: kotlin.String

    object Disabled : aws.sdk.kotlin.services.shield.model.ApplicationLayerAutomaticResponseStatus() {
        override val value: kotlin.String = "DISABLED"
        override fun toString(): kotlin.String = value
    }

    object Enabled : aws.sdk.kotlin.services.shield.model.ApplicationLayerAutomaticResponseStatus() {
        override val value: kotlin.String = "ENABLED"
        override fun toString(): kotlin.String = value
    }

    data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.shield.model.ApplicationLayerAutomaticResponseStatus() {
        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.ApplicationLayerAutomaticResponseStatus = when(str) {
            "DISABLED" -> Disabled
            "ENABLED" -> Enabled
            else -> SdkUnknown(str)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy