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

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

    abstract val value: kotlin.String

    object Resend : aws.sdk.kotlin.services.appstream.model.MessageAction() {
        override val value: kotlin.String = "RESEND"
        override fun toString(): kotlin.String = value
    }

    object Suppress : aws.sdk.kotlin.services.appstream.model.MessageAction() {
        override val value: kotlin.String = "SUPPRESS"
        override fun toString(): kotlin.String = value
    }

    data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.appstream.model.MessageAction() {
        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.MessageAction = when(str) {
            "RESEND" -> Resend
            "SUPPRESS" -> Suppress
            else -> SdkUnknown(str)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy