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

commonMain.aws.sdk.kotlin.services.cleanrooms.model.ResourceType.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.cleanrooms.model

import kotlin.collections.List

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

    public object Collaboration : aws.sdk.kotlin.services.cleanrooms.model.ResourceType() {
        override val value: kotlin.String = "COLLABORATION"
        override fun toString(): kotlin.String = "Collaboration"
    }

    public object ConfiguredTable : aws.sdk.kotlin.services.cleanrooms.model.ResourceType() {
        override val value: kotlin.String = "CONFIGURED_TABLE"
        override fun toString(): kotlin.String = "ConfiguredTable"
    }

    public object ConfiguredTableAssociation : aws.sdk.kotlin.services.cleanrooms.model.ResourceType() {
        override val value: kotlin.String = "CONFIGURED_TABLE_ASSOCIATION"
        override fun toString(): kotlin.String = "ConfiguredTableAssociation"
    }

    public object Membership : aws.sdk.kotlin.services.cleanrooms.model.ResourceType() {
        override val value: kotlin.String = "MEMBERSHIP"
        override fun toString(): kotlin.String = "Membership"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.cleanrooms.model.ResourceType() {
        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.cleanrooms.model.ResourceType = when (value) {
            "COLLABORATION" -> Collaboration
            "CONFIGURED_TABLE" -> ConfiguredTable
            "CONFIGURED_TABLE_ASSOCIATION" -> ConfiguredTableAssociation
            "MEMBERSHIP" -> Membership
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Collaboration,
            ConfiguredTable,
            ConfiguredTableAssociation,
            Membership,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy