commonMain.aws.sdk.kotlin.services.ssooidc.model.InvalidClientException.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 `clientId` or `clientSecret` in the request is invalid. For example, this can occur when a client sends an incorrect `clientId` or an expired `clientSecret`.
*/
public class InvalidClientException private constructor(builder: Builder) : SsoOidcException() {
/**
* Single error code. For this exception the value will be `invalid_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.InvalidClientException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InvalidClientException(")
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 InvalidClientException
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.InvalidClientException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Single error code. For this exception the value will be `invalid_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.InvalidClientException) : this() {
this.error = x.error
this.errorDescription = x.errorDescription
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.ssooidc.model.InvalidClientException = InvalidClientException(this)
internal fun correctErrors(): Builder {
return this
}
}
}