commonMain.aws.sdk.kotlin.services.firehose.model.S3BackupMode.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 S3BackupMode {
public abstract val value: kotlin.String
public object Disabled : aws.sdk.kotlin.services.firehose.model.S3BackupMode() {
override val value: kotlin.String = "Disabled"
override fun toString(): kotlin.String = "Disabled"
}
public object Enabled : aws.sdk.kotlin.services.firehose.model.S3BackupMode() {
override val value: kotlin.String = "Enabled"
override fun toString(): kotlin.String = "Enabled"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.firehose.model.S3BackupMode() {
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.S3BackupMode = when (value) {
"Disabled" -> Disabled
"Enabled" -> Enabled
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,
Enabled,
)
}
}