commonMain.aws.sdk.kotlin.services.appsync.model.SchemaStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appsync-jvm Show documentation
Show all versions of appsync-jvm Show documentation
The AWS SDK for Kotlin client for AppSync
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appsync.model
import kotlin.collections.List
public sealed class SchemaStatus {
public abstract val value: kotlin.String
public object Active : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
override val value: kotlin.String = "ACTIVE"
override fun toString(): kotlin.String = "Active"
}
public object Deleting : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
override val value: kotlin.String = "DELETING"
override fun toString(): kotlin.String = "Deleting"
}
public object Failed : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
override val value: kotlin.String = "FAILED"
override fun toString(): kotlin.String = "Failed"
}
public object NotApplicable : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
override val value: kotlin.String = "NOT_APPLICABLE"
override fun toString(): kotlin.String = "NotApplicable"
}
public object Processing : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
override val value: kotlin.String = "PROCESSING"
override fun toString(): kotlin.String = "Processing"
}
public object Success : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
override val value: kotlin.String = "SUCCESS"
override fun toString(): kotlin.String = "Success"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.appsync.model.SchemaStatus() {
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.appsync.model.SchemaStatus = when (value) {
"ACTIVE" -> Active
"DELETING" -> Deleting
"FAILED" -> Failed
"NOT_APPLICABLE" -> NotApplicable
"PROCESSING" -> Processing
"SUCCESS" -> Success
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Active,
Deleting,
Failed,
NotApplicable,
Processing,
Success,
)
}
}