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