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