commonMain.aws.sdk.kotlin.services.eventbridge.model.RemoveTargetsResponse.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 RemoveTargetsResponse private constructor(builder: Builder) {
/**
* The failed target entries.
*/
public val failedEntries: List? = builder.failedEntries
/**
* 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.eventbridge.model.RemoveTargetsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RemoveTargetsResponse(")
append("failedEntries=$failedEntries,")
append("failedEntryCount=$failedEntryCount")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = failedEntries?.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 RemoveTargetsResponse
if (failedEntries != other.failedEntries) return false
if (failedEntryCount != other.failedEntryCount) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.RemoveTargetsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The failed target entries.
*/
public var failedEntries: List? = null
/**
* The number of failed entries.
*/
public var failedEntryCount: kotlin.Int = 0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.RemoveTargetsResponse) : this() {
this.failedEntries = x.failedEntries
this.failedEntryCount = x.failedEntryCount
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.RemoveTargetsResponse = RemoveTargetsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}