commonMain.aws.sdk.kotlin.services.eventbridge.model.PutPartnerEventsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-jvm Show documentation
Show all versions of eventbridge-jvm Show documentation
The AWS SDK for Kotlin client for EventBridge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.eventbridge.model
import aws.smithy.kotlin.runtime.SdkDsl
public class PutPartnerEventsResponse private constructor(builder: Builder) {
/**
* The results for each event entry the partner submitted in this request. If the event was successfully submitted, 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.
*
* For each record, the index of the response element is the same as the index in the request array.
*/
public val entries: List? = builder.entries
/**
* The number of events from this operation that could not be written to the partner event bus.
*/
public val failedEntryCount: kotlin.Int = builder.failedEntryCount
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.PutPartnerEventsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutPartnerEventsResponse(")
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 PutPartnerEventsResponse
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.eventbridge.model.PutPartnerEventsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The results for each event entry the partner submitted in this request. If the event was successfully submitted, 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.
*
* For each record, the index of the response element is the same as the index in the request array.
*/
public var entries: List? = null
/**
* The number of events from this operation that could not be written to the partner event bus.
*/
public var failedEntryCount: kotlin.Int = 0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.PutPartnerEventsResponse) : this() {
this.entries = x.entries
this.failedEntryCount = x.failedEntryCount
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.PutPartnerEventsResponse = PutPartnerEventsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}