commonMain.aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.model
import kotlin.collections.List
public sealed class DeliveryStreamEncryptionStatus {
public abstract val value: kotlin.String
public object Disabled : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
override val value: kotlin.String = "DISABLED"
override fun toString(): kotlin.String = "Disabled"
}
public object Disabling : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
override val value: kotlin.String = "DISABLING"
override fun toString(): kotlin.String = "Disabling"
}
public object DisablingFailed : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
override val value: kotlin.String = "DISABLING_FAILED"
override fun toString(): kotlin.String = "DisablingFailed"
}
public object Enabled : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
override val value: kotlin.String = "ENABLED"
override fun toString(): kotlin.String = "Enabled"
}
public object Enabling : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
override val value: kotlin.String = "ENABLING"
override fun toString(): kotlin.String = "Enabling"
}
public object EnablingFailed : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
override val value: kotlin.String = "ENABLING_FAILED"
override fun toString(): kotlin.String = "EnablingFailed"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.firehose.model.DeliveryStreamEncryptionStatus() {
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.firehose.model.DeliveryStreamEncryptionStatus = when (value) {
"DISABLED" -> Disabled
"DISABLING" -> Disabling
"DISABLING_FAILED" -> DisablingFailed
"ENABLED" -> Enabled
"ENABLING" -> Enabling
"ENABLING_FAILED" -> EnablingFailed
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Disabled,
Disabling,
DisablingFailed,
Enabled,
Enabling,
EnablingFailed,
)
}
}