All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.route53.model.InsufficientDataHealthStatus.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// 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,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy