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

commonMain.aws.sdk.kotlin.services.ssmincidents.model.ConflictException.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.ssmincidents.model

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

/**
 * Updating or deleting a resource causes an inconsistent state.
 */
public class ConflictException private constructor(builder: Builder) : SsmIncidentsException(builder.message) {

    /**
     * The identifier of the requested resource
     */
    public val resourceIdentifier: kotlin.String? = builder.resourceIdentifier
    /**
     * The resource type
     */
    public val resourceType: aws.sdk.kotlin.services.ssmincidents.model.ResourceType? = builder.resourceType
    /**
     * If present in the output, the operation can be retried after this time
     */
    public val retryAfter: aws.smithy.kotlin.runtime.time.Instant? = builder.retryAfter

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

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

    override fun toString(): kotlin.String = buildString {
        append("ConflictException(")
        append("message=$message,")
        append("resourceIdentifier=$resourceIdentifier,")
        append("resourceType=$resourceType,")
        append("retryAfter=$retryAfter")
        append(")")
    }

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

        if (message != other.message) return false
        if (resourceIdentifier != other.resourceIdentifier) return false
        if (resourceType != other.resourceType) return false
        if (retryAfter != other.retryAfter) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        public var message: kotlin.String? = null
        /**
         * The identifier of the requested resource
         */
        public var resourceIdentifier: kotlin.String? = null
        /**
         * The resource type
         */
        public var resourceType: aws.sdk.kotlin.services.ssmincidents.model.ResourceType? = null
        /**
         * If present in the output, the operation can be retried after this time
         */
        public var retryAfter: aws.smithy.kotlin.runtime.time.Instant? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.ssmincidents.model.ConflictException) : this() {
            this.message = x.message
            this.resourceIdentifier = x.resourceIdentifier
            this.resourceType = x.resourceType
            this.retryAfter = x.retryAfter
        }

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

        internal fun correctErrors(): Builder {
            if (message == null) message = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy