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