commonMain.aws.sdk.kotlin.services.sagemakergeospatial.model.TargetOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakergeospatial-jvm Show documentation
Show all versions of sagemakergeospatial-jvm Show documentation
The AWS SDK for Kotlin client for SageMaker Geospatial
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakergeospatial.model
import kotlin.collections.List
public sealed class TargetOptions {
public abstract val value: kotlin.String
/**
* INPUT
*/
public object Input : aws.sdk.kotlin.services.sagemakergeospatial.model.TargetOptions() {
override val value: kotlin.String = "INPUT"
override fun toString(): kotlin.String = "Input"
}
/**
* OUTPUT
*/
public object Output : aws.sdk.kotlin.services.sagemakergeospatial.model.TargetOptions() {
override val value: kotlin.String = "OUTPUT"
override fun toString(): kotlin.String = "Output"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.sagemakergeospatial.model.TargetOptions() {
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.TargetOptions = when (value) {
"INPUT" -> Input
"OUTPUT" -> Output
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Input,
Output,
)
}
}