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

commonMain.aws.sdk.kotlin.services.cloudwatchevents.model.PutEventsResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.cloudwatchevents.model



public class PutEventsResponse private constructor(builder: Builder) {
    /**
     * The successfully and unsuccessfully ingested events results. If the ingestion was successful, the entry has the event ID in it. Otherwise, you can use the error code and error message to identify the problem with the entry.
     */
    public val entries: List? = builder.entries
    /**
     * The number of failed entries.
     */
    public val failedEntryCount: kotlin.Int = builder.failedEntryCount

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

    override fun toString(): kotlin.String = buildString {
        append("PutEventsResponse(")
        append("entries=$entries,")
        append("failedEntryCount=$failedEntryCount")
        append(")")
    }

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

        if (entries != other.entries) return false
        if (failedEntryCount != other.failedEntryCount) return false

        return true
    }

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

    public class Builder {
        /**
         * The successfully and unsuccessfully ingested events results. If the ingestion was successful, the entry has the event ID in it. Otherwise, you can use the error code and error message to identify the problem with the entry.
         */
        public var entries: List? = null
        /**
         * The number of failed entries.
         */
        public var failedEntryCount: kotlin.Int = 0

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cloudwatchevents.model.PutEventsResponse) : this() {
            this.entries = x.entries
            this.failedEntryCount = x.failedEntryCount
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy