com.pulumi.awsnative.rum.kotlin.inputs.AppMonitorCustomEventsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.rum.kotlin.inputs
import com.pulumi.awsnative.rum.inputs.AppMonitorCustomEventsArgs.builder
import com.pulumi.awsnative.rum.kotlin.enums.AppMonitorCustomEventsStatus
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* AppMonitor custom events configuration
* @property status Indicates whether AppMonitor accepts custom events.
*/
public data class AppMonitorCustomEventsArgs(
public val status: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.rum.inputs.AppMonitorCustomEventsArgs =
com.pulumi.awsnative.rum.inputs.AppMonitorCustomEventsArgs.builder()
.status(status?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AppMonitorCustomEventsArgs].
*/
@PulumiTagMarker
public class AppMonitorCustomEventsArgsBuilder internal constructor() {
private var status: Output? = null
/**
* @param value Indicates whether AppMonitor accepts custom events.
*/
@JvmName("ahuhoeyabckqjjdv")
public suspend fun status(`value`: Output) {
this.status = value
}
/**
* @param value Indicates whether AppMonitor accepts custom events.
*/
@JvmName("vxpgdoygfcdaccmt")
public suspend fun status(`value`: AppMonitorCustomEventsStatus?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.status = mapped
}
internal fun build(): AppMonitorCustomEventsArgs = AppMonitorCustomEventsArgs(
status = status,
)
}