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

commonMain.aws.sdk.kotlin.services.ssooidc.model.InvalidScopeException.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// 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 scope provided in the request is invalid.
 */
public class InvalidScopeException private constructor(builder: Builder) : SsoOidcException() {

    /**
     * Single error code. For this exception the value will be `invalid_scope`.
     */
    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.InvalidScopeException = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("InvalidScopeException(")
        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 InvalidScopeException

        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.InvalidScopeException = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Single error code. For this exception the value will be `invalid_scope`.
         */
        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.InvalidScopeException) : this() {
            this.error = x.error
            this.errorDescription = x.errorDescription
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.ssooidc.model.InvalidScopeException = InvalidScopeException(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy