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

commonMain.aws.sdk.kotlin.services.entityresolution.model.MatchPurpose.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.entityresolution.model

import kotlin.collections.List

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

    public object IdentifierGeneration : aws.sdk.kotlin.services.entityresolution.model.MatchPurpose() {
        override val value: kotlin.String = "IDENTIFIER_GENERATION"
        override fun toString(): kotlin.String = "IdentifierGeneration"
    }

    public object Indexing : aws.sdk.kotlin.services.entityresolution.model.MatchPurpose() {
        override val value: kotlin.String = "INDEXING"
        override fun toString(): kotlin.String = "Indexing"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.entityresolution.model.MatchPurpose() {
        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.entityresolution.model.MatchPurpose = when (value) {
            "IDENTIFIER_GENERATION" -> IdentifierGeneration
            "INDEXING" -> Indexing
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            IdentifierGeneration,
            Indexing,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy