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

commonMain.aws.sdk.kotlin.services.iotwireless.model.MulticastFrameInfo.kt Maven / Gradle / Ivy

There is a newer version: 1.3.31
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.iotwireless.model

import kotlin.collections.List

/**
 * `FrameInfo` of your multicast group resources for the trace content. Use FrameInfo to debug the multicast communication between your multicast groups and the network server.
 */
public sealed class MulticastFrameInfo {
    public abstract val value: kotlin.String

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

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

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

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

        private val values: kotlin.collections.List = listOf(
            Disabled,
            Enabled,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy