commonMain.aws.sdk.kotlin.services.eventbridge.model.RoutingConfig.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
/**
* The routing configuration of the endpoint.
*/
public class RoutingConfig private constructor(builder: Builder) {
/**
* The failover configuration for an endpoint. This includes what triggers failover and what happens when it's triggered.
*/
public val failoverConfig: aws.sdk.kotlin.services.eventbridge.model.FailoverConfig? = builder.failoverConfig
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.RoutingConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RoutingConfig(")
append("failoverConfig=$failoverConfig")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = failoverConfig?.hashCode() ?: 0
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 RoutingConfig
if (failoverConfig != other.failoverConfig) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.RoutingConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The failover configuration for an endpoint. This includes what triggers failover and what happens when it's triggered.
*/
public var failoverConfig: aws.sdk.kotlin.services.eventbridge.model.FailoverConfig? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.RoutingConfig) : this() {
this.failoverConfig = x.failoverConfig
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.RoutingConfig = RoutingConfig(this)
/**
* construct an [aws.sdk.kotlin.services.eventbridge.model.FailoverConfig] inside the given [block]
*/
public fun failoverConfig(block: aws.sdk.kotlin.services.eventbridge.model.FailoverConfig.Builder.() -> kotlin.Unit) {
this.failoverConfig = aws.sdk.kotlin.services.eventbridge.model.FailoverConfig.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}