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