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

commonMain.aws.sdk.kotlin.services.sagemakergeospatial.model.GroupBy.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.sagemakergeospatial.model

import kotlin.collections.List

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

    /**
     * ALL
     */
    public object All : aws.sdk.kotlin.services.sagemakergeospatial.model.GroupBy() {
        override val value: kotlin.String = "ALL"
        override fun toString(): kotlin.String = "All"
    }

    /**
     * YEARLY
     */
    public object Yearly : aws.sdk.kotlin.services.sagemakergeospatial.model.GroupBy() {
        override val value: kotlin.String = "YEARLY"
        override fun toString(): kotlin.String = "Yearly"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.sagemakergeospatial.model.GroupBy() {
        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.sagemakergeospatial.model.GroupBy = when (value) {
            "ALL" -> All
            "YEARLY" -> Yearly
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            All,
            Yearly,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy