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

commonMain.aws.sdk.kotlin.services.lexruntimev2.model.InterpretationSource.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.lexruntimev2.model

import kotlin.collections.List

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

    public object Bedrock : aws.sdk.kotlin.services.lexruntimev2.model.InterpretationSource() {
        override val value: kotlin.String = "Bedrock"
        override fun toString(): kotlin.String = "Bedrock"
    }

    public object Lex : aws.sdk.kotlin.services.lexruntimev2.model.InterpretationSource() {
        override val value: kotlin.String = "Lex"
        override fun toString(): kotlin.String = "Lex"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.lexruntimev2.model.InterpretationSource() {
        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.lexruntimev2.model.InterpretationSource = when (value) {
            "Bedrock" -> Bedrock
            "Lex" -> Lex
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Bedrock,
            Lex,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy