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

aws.sdk.kotlin.services.sagemaker.model.RedshiftResultFormat.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.sagemaker.model



/**
 * The data storage format for Redshift query results.
 */
sealed class RedshiftResultFormat {

    abstract val value: kotlin.String

    object Csv : aws.sdk.kotlin.services.sagemaker.model.RedshiftResultFormat() {
        override val value: kotlin.String = "CSV"
        override fun toString(): kotlin.String = value
    }

    object Parquet : aws.sdk.kotlin.services.sagemaker.model.RedshiftResultFormat() {
        override val value: kotlin.String = "PARQUET"
        override fun toString(): kotlin.String = value
    }

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

    companion object {
        /**
         * Convert a raw value to one of the sealed variants or [SdkUnknown]
         */
        fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.sagemaker.model.RedshiftResultFormat = when(str) {
            "CSV" -> Csv
            "PARQUET" -> Parquet
            else -> SdkUnknown(str)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy