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

commonMain.aws.sdk.kotlin.services.resourcegroups.model.QueryError.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.resourcegroups.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * A two-part error structure that can occur in `ListGroupResources` or `SearchResources`.
 */
public class QueryError private constructor(builder: Builder) {
    /**
     * Specifies the error code that was raised.
     */
    public val errorCode: aws.sdk.kotlin.services.resourcegroups.model.QueryErrorCode? = builder.errorCode
    /**
     * A message that explains the `ErrorCode`.
     */
    public val message: kotlin.String? = builder.message

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resourcegroups.model.QueryError = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("QueryError(")
        append("errorCode=$errorCode,")
        append("message=$message")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = errorCode?.hashCode() ?: 0
        result = 31 * result + (message?.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 QueryError

        if (errorCode != other.errorCode) return false
        if (message != other.message) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resourcegroups.model.QueryError = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Specifies the error code that was raised.
         */
        public var errorCode: aws.sdk.kotlin.services.resourcegroups.model.QueryErrorCode? = null
        /**
         * A message that explains the `ErrorCode`.
         */
        public var message: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.resourcegroups.model.QueryError) : this() {
            this.errorCode = x.errorCode
            this.message = x.message
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy