commonMain.aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod.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 ElasticsearchIndexRotationPeriod {
public abstract val value: kotlin.String
public object NoRotation : aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod() {
override val value: kotlin.String = "NoRotation"
override fun toString(): kotlin.String = "NoRotation"
}
public object OneDay : aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod() {
override val value: kotlin.String = "OneDay"
override fun toString(): kotlin.String = "OneDay"
}
public object OneHour : aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod() {
override val value: kotlin.String = "OneHour"
override fun toString(): kotlin.String = "OneHour"
}
public object OneMonth : aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod() {
override val value: kotlin.String = "OneMonth"
override fun toString(): kotlin.String = "OneMonth"
}
public object OneWeek : aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod() {
override val value: kotlin.String = "OneWeek"
override fun toString(): kotlin.String = "OneWeek"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.firehose.model.ElasticsearchIndexRotationPeriod() {
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.ElasticsearchIndexRotationPeriod = when (value) {
"NoRotation" -> NoRotation
"OneDay" -> OneDay
"OneHour" -> OneHour
"OneMonth" -> OneMonth
"OneWeek" -> OneWeek
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
NoRotation,
OneDay,
OneHour,
OneMonth,
OneWeek,
)
}
}