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

commonMain.aws.sdk.kotlin.services.configservice.model.FailedDeleteRemediationExceptionsBatch.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.configservice.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * List of each of the failed delete remediation exceptions with specific reasons.
 */
public class FailedDeleteRemediationExceptionsBatch private constructor(builder: Builder) {
    /**
     * Returns remediation exception resource key object of the failed items.
     */
    public val failedItems: List? = builder.failedItems
    /**
     * Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.
     */
    public val failureMessage: kotlin.String? = builder.failureMessage

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

    override fun toString(): kotlin.String = buildString {
        append("FailedDeleteRemediationExceptionsBatch(")
        append("failedItems=$failedItems,")
        append("failureMessage=$failureMessage")
        append(")")
    }

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

        if (failedItems != other.failedItems) return false
        if (failureMessage != other.failureMessage) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Returns remediation exception resource key object of the failed items.
         */
        public var failedItems: List? = null
        /**
         * Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.
         */
        public var failureMessage: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.configservice.model.FailedDeleteRemediationExceptionsBatch) : this() {
            this.failedItems = x.failedItems
            this.failureMessage = x.failureMessage
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy