commonMain.aws.sdk.kotlin.services.ssooidc.model.UnauthorizedClientException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssooidc-jvm Show documentation
Show all versions of ssooidc-jvm Show documentation
The AWS SDK for Kotlin client for SSO OIDC
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ssooidc.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* Indicates that the client is not currently authorized to make the request. This can happen when a `clientId` is not issued for a public client.
*/
public class UnauthorizedClientException private constructor(builder: Builder) : SsoOidcException() {
/**
* Single error code. For this exception the value will be `unauthorized_client`.
*/
public val error: kotlin.String? = builder.error
/**
* Human-readable text providing additional information, used to assist the client developer in understanding the error that occurred.
*/
public val errorDescription: kotlin.String? = builder.errorDescription
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.ssooidc.model.UnauthorizedClientException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UnauthorizedClientException(")
append("error=$error,")
append("errorDescription=$errorDescription")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = error?.hashCode() ?: 0
result = 31 * result + (errorDescription?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as UnauthorizedClientException
if (error != other.error) return false
if (errorDescription != other.errorDescription) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.ssooidc.model.UnauthorizedClientException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Single error code. For this exception the value will be `unauthorized_client`.
*/
public var error: kotlin.String? = null
/**
* Human-readable text providing additional information, used to assist the client developer in understanding the error that occurred.
*/
public var errorDescription: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.ssooidc.model.UnauthorizedClientException) : this() {
this.error = x.error
this.errorDescription = x.errorDescription
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.ssooidc.model.UnauthorizedClientException = UnauthorizedClientException(this)
internal fun correctErrors(): Builder {
return this
}
}
}