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

commonMain.aws.sdk.kotlin.services.backup.model.DependencyFailureException.kt Maven / Gradle / Ivy

There is a newer version: 1.3.37
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.backup.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata

/**
 * A dependent Amazon Web Services service or resource returned an error to the Backup service, and the action cannot be completed.
 */
public class DependencyFailureException private constructor(builder: Builder) : BackupException(builder.message) {

    public val code: kotlin.String? = builder.code
    /**
     *
     */
    public val context: kotlin.String? = builder.context
    /**
     *
     */
    public val type: kotlin.String? = builder.type

    init {
        sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Server
    }

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

    override fun toString(): kotlin.String = buildString {
        append("DependencyFailureException(")
        append("code=$code,")
        append("context=$context,")
        append("message=$message,")
        append("type=$type")
        append(")")
    }

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

        if (code != other.code) return false
        if (context != other.context) return false
        if (message != other.message) return false
        if (type != other.type) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        public var code: kotlin.String? = null
        /**
         *
         */
        public var context: kotlin.String? = null
        public var message: kotlin.String? = null
        /**
         *
         */
        public var type: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.backup.model.DependencyFailureException) : this() {
            this.code = x.code
            this.context = x.context
            this.message = x.message
            this.type = x.type
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy