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