All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.ebs.model.RequestThrottledExceptionReason.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.ebs.model

import kotlin.collections.List

public sealed class RequestThrottledExceptionReason {
    public abstract val value: kotlin.String

    public object AccountThrottled : aws.sdk.kotlin.services.ebs.model.RequestThrottledExceptionReason() {
        override val value: kotlin.String = "ACCOUNT_THROTTLED"
        override fun toString(): kotlin.String = "AccountThrottled"
    }

    public object DependencyRequestThrottled : aws.sdk.kotlin.services.ebs.model.RequestThrottledExceptionReason() {
        override val value: kotlin.String = "DEPENDENCY_REQUEST_THROTTLED"
        override fun toString(): kotlin.String = "DependencyRequestThrottled"
    }

    public object ResourceLevelThrottle : aws.sdk.kotlin.services.ebs.model.RequestThrottledExceptionReason() {
        override val value: kotlin.String = "RESOURCE_LEVEL_THROTTLE"
        override fun toString(): kotlin.String = "ResourceLevelThrottle"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.ebs.model.RequestThrottledExceptionReason() {
        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.ebs.model.RequestThrottledExceptionReason = when (value) {
            "ACCOUNT_THROTTLED" -> AccountThrottled
            "DEPENDENCY_REQUEST_THROTTLED" -> DependencyRequestThrottled
            "RESOURCE_LEVEL_THROTTLE" -> ResourceLevelThrottle
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            AccountThrottled,
            DependencyRequestThrottled,
            ResourceLevelThrottle,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy