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