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