com.pulumi.aws.cloudwatch.kotlin.inputs.EventEndpointRoutingConfigFailoverConfigPrimaryArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.cloudwatch.kotlin.inputs
import com.pulumi.aws.cloudwatch.inputs.EventEndpointRoutingConfigFailoverConfigPrimaryArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property healthCheck The ARN of the health check used by the endpoint to determine whether failover is triggered.
*/
public data class EventEndpointRoutingConfigFailoverConfigPrimaryArgs(
public val healthCheck: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.cloudwatch.inputs.EventEndpointRoutingConfigFailoverConfigPrimaryArgs =
com.pulumi.aws.cloudwatch.inputs.EventEndpointRoutingConfigFailoverConfigPrimaryArgs.builder()
.healthCheck(healthCheck?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EventEndpointRoutingConfigFailoverConfigPrimaryArgs].
*/
@PulumiTagMarker
public class EventEndpointRoutingConfigFailoverConfigPrimaryArgsBuilder internal constructor() {
private var healthCheck: Output? = null
/**
* @param value The ARN of the health check used by the endpoint to determine whether failover is triggered.
*/
@JvmName("cvajtsiaykasittd")
public suspend fun healthCheck(`value`: Output) {
this.healthCheck = value
}
/**
* @param value The ARN of the health check used by the endpoint to determine whether failover is triggered.
*/
@JvmName("aodnbtiokugqbjml")
public suspend fun healthCheck(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.healthCheck = mapped
}
internal fun build(): EventEndpointRoutingConfigFailoverConfigPrimaryArgs =
EventEndpointRoutingConfigFailoverConfigPrimaryArgs(
healthCheck = healthCheck,
)
}