commonMain.aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationdiscoveryservice-jvm Show documentation
Show all versions of applicationdiscoveryservice-jvm Show documentation
The AWS SDK for Kotlin client for Application Discovery Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationdiscoveryservice.model
import kotlin.collections.List
public sealed class ContinuousExportStatus {
public abstract val value: kotlin.String
public object Active : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "ACTIVE"
override fun toString(): kotlin.String = "Active"
}
public object Error : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "ERROR"
override fun toString(): kotlin.String = "Error"
}
public object Inactive : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "INACTIVE"
override fun toString(): kotlin.String = "Inactive"
}
public object StartFailed : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "START_FAILED"
override fun toString(): kotlin.String = "StartFailed"
}
public object StartInProgress : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "START_IN_PROGRESS"
override fun toString(): kotlin.String = "StartInProgress"
}
public object StopFailed : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "STOP_FAILED"
override fun toString(): kotlin.String = "StopFailed"
}
public object StopInProgress : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
override val value: kotlin.String = "STOP_IN_PROGRESS"
override fun toString(): kotlin.String = "StopInProgress"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.applicationdiscoveryservice.model.ContinuousExportStatus() {
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.applicationdiscoveryservice.model.ContinuousExportStatus = when (value) {
"ACTIVE" -> Active
"ERROR" -> Error
"INACTIVE" -> Inactive
"START_FAILED" -> StartFailed
"START_IN_PROGRESS" -> StartInProgress
"STOP_FAILED" -> StopFailed
"STOP_IN_PROGRESS" -> StopInProgress
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Active,
Error,
Inactive,
StartFailed,
StartInProgress,
StopFailed,
StopInProgress,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy