commonMain.aws.sdk.kotlin.services.resourcegroups.model.GroupConfigurationStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resourcegroups-jvm Show documentation
Show all versions of resourcegroups-jvm Show documentation
The AWS SDK for Kotlin client for Resource Groups
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.resourcegroups.model
import kotlin.collections.List
public sealed class GroupConfigurationStatus {
public abstract val value: kotlin.String
public object UpdateComplete : aws.sdk.kotlin.services.resourcegroups.model.GroupConfigurationStatus() {
override val value: kotlin.String = "UPDATE_COMPLETE"
override fun toString(): kotlin.String = "UpdateComplete"
}
public object UpdateFailed : aws.sdk.kotlin.services.resourcegroups.model.GroupConfigurationStatus() {
override val value: kotlin.String = "UPDATE_FAILED"
override fun toString(): kotlin.String = "UpdateFailed"
}
public object Updating : aws.sdk.kotlin.services.resourcegroups.model.GroupConfigurationStatus() {
override val value: kotlin.String = "UPDATING"
override fun toString(): kotlin.String = "Updating"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.resourcegroups.model.GroupConfigurationStatus() {
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.resourcegroups.model.GroupConfigurationStatus = when (value) {
"UPDATE_COMPLETE" -> UpdateComplete
"UPDATE_FAILED" -> UpdateFailed
"UPDATING" -> Updating
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
UpdateComplete,
UpdateFailed,
Updating,
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy