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