commonMain.aws.sdk.kotlin.services.eventbridge.model.TestEventPatternResponse.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 TestEventPatternResponse private constructor(builder: Builder) {
/**
* Indicates whether the event matches the event pattern.
*/
public val result: kotlin.Boolean = builder.result
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.TestEventPatternResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("TestEventPatternResponse(")
append("result=$result")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = result.hashCode()
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 TestEventPatternResponse
if (result != other.result) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.TestEventPatternResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Indicates whether the event matches the event pattern.
*/
public var result: kotlin.Boolean = false
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.TestEventPatternResponse) : this() {
this.result = x.result
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.TestEventPatternResponse = TestEventPatternResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}