commonMain.aws.sdk.kotlin.services.resiliencehub.model.EstimatedCostTier.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 EstimatedCostTier {
public abstract val value: kotlin.String
public object L1 : aws.sdk.kotlin.services.resiliencehub.model.EstimatedCostTier() {
override val value: kotlin.String = "L1"
override fun toString(): kotlin.String = "L1"
}
public object L2 : aws.sdk.kotlin.services.resiliencehub.model.EstimatedCostTier() {
override val value: kotlin.String = "L2"
override fun toString(): kotlin.String = "L2"
}
public object L3 : aws.sdk.kotlin.services.resiliencehub.model.EstimatedCostTier() {
override val value: kotlin.String = "L3"
override fun toString(): kotlin.String = "L3"
}
public object L4 : aws.sdk.kotlin.services.resiliencehub.model.EstimatedCostTier() {
override val value: kotlin.String = "L4"
override fun toString(): kotlin.String = "L4"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.resiliencehub.model.EstimatedCostTier() {
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.EstimatedCostTier = when (value) {
"L1" -> L1
"L2" -> L2
"L3" -> L3
"L4" -> L4
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
L1,
L2,
L3,
L4,
)
}
}