commonMain.aws.sdk.kotlin.services.cognitoidentity.model.ErrorCode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cognitoidentity-jvm Show documentation
Show all versions of cognitoidentity-jvm Show documentation
The AWS SDK for Kotlin client for Cognito Identity
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cognitoidentity.model
import kotlin.collections.List
public sealed class ErrorCode {
public abstract val value: kotlin.String
public object AccessDenied : aws.sdk.kotlin.services.cognitoidentity.model.ErrorCode() {
override val value: kotlin.String = "AccessDenied"
override fun toString(): kotlin.String = "AccessDenied"
}
public object InternalServerError : aws.sdk.kotlin.services.cognitoidentity.model.ErrorCode() {
override val value: kotlin.String = "InternalServerError"
override fun toString(): kotlin.String = "InternalServerError"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.cognitoidentity.model.ErrorCode() {
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.cognitoidentity.model.ErrorCode = when (value) {
"AccessDenied" -> AccessDenied
"InternalServerError" -> InternalServerError
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
AccessDenied,
InternalServerError,
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy