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

commonMain.aws.sdk.kotlin.services.databrew.model.SampleMode.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.databrew.model

import kotlin.collections.List

public sealed class SampleMode {

    public abstract val value: kotlin.String

    public object CustomRows : aws.sdk.kotlin.services.databrew.model.SampleMode() {
        override val value: kotlin.String = "CUSTOM_ROWS"
        override fun toString(): kotlin.String = value
    }

    public object FullDataset : aws.sdk.kotlin.services.databrew.model.SampleMode() {
        override val value: kotlin.String = "FULL_DATASET"
        override fun toString(): kotlin.String = value
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.databrew.model.SampleMode() {
        override fun toString(): kotlin.String = value
    }

    public companion object {
        /**
         * Convert a raw value to one of the sealed variants or [SdkUnknown]
         */
        public fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.databrew.model.SampleMode = when(str) {
            "CUSTOM_ROWS" -> CustomRows
            "FULL_DATASET" -> FullDataset
            else -> SdkUnknown(str)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy