commonMain.aws.sdk.kotlin.services.athena.model.ThrottleReason.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.model
import kotlin.collections.List
/**
* The reason for the query throttling, for example, when it exceeds the concurrent query limit.
*/
public sealed class ThrottleReason {
public abstract val value: kotlin.String
public object ConcurrentQueryLimitExceeded : aws.sdk.kotlin.services.athena.model.ThrottleReason() {
override val value: kotlin.String = "CONCURRENT_QUERY_LIMIT_EXCEEDED"
override fun toString(): kotlin.String = "ConcurrentQueryLimitExceeded"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.athena.model.ThrottleReason() {
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.athena.model.ThrottleReason = when (value) {
"CONCURRENT_QUERY_LIMIT_EXCEEDED" -> ConcurrentQueryLimitExceeded
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
ConcurrentQueryLimitExceeded,
)
}
}