![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotevents.kotlin.inputs.DetectorModelClearTimerArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotevents.kotlin.inputs
import com.pulumi.awsnative.iotevents.inputs.DetectorModelClearTimerArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Information needed to clear the timer.
* @property timerName The name of the timer to clear.
*/
public data class DetectorModelClearTimerArgs(
public val timerName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotevents.inputs.DetectorModelClearTimerArgs =
com.pulumi.awsnative.iotevents.inputs.DetectorModelClearTimerArgs.builder()
.timerName(timerName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DetectorModelClearTimerArgs].
*/
@PulumiTagMarker
public class DetectorModelClearTimerArgsBuilder internal constructor() {
private var timerName: Output? = null
/**
* @param value The name of the timer to clear.
*/
@JvmName("xqxwoluycbpikhrt")
public suspend fun timerName(`value`: Output) {
this.timerName = value
}
/**
* @param value The name of the timer to clear.
*/
@JvmName("xledfogpsgbggdlg")
public suspend fun timerName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.timerName = mapped
}
internal fun build(): DetectorModelClearTimerArgs = DetectorModelClearTimerArgs(
timerName = timerName ?: throw PulumiNullFieldException("timerName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy