commonMain.aws.sdk.kotlin.services.cloudwatchevents.model.PutPartnerEventsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatchevents-jvm Show documentation
Show all versions of cloudwatchevents-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch Events
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchevents.model
import aws.smithy.kotlin.runtime.SdkDsl
public class PutPartnerEventsResponse private constructor(builder: Builder) {
/**
* The list of events from this operation that were successfully written to the partner event bus.
*/
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.cloudwatchevents.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.cloudwatchevents.model.PutPartnerEventsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The list of events from this operation that were successfully written to the partner event bus.
*/
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.cloudwatchevents.model.PutPartnerEventsResponse) : this() {
this.entries = x.entries
this.failedEntryCount = x.failedEntryCount
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchevents.model.PutPartnerEventsResponse = PutPartnerEventsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}