commonMain.aws.sdk.kotlin.services.cloudwatchevents.model.PutEventsResponse.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 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()
@SdkDsl
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
}
}
}