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