TimerTriggerArgs

data class TimerTriggerArgs(val name: Output<String>, val schedule: Output<String>, val status: Output<Either<String, TriggerStatus>>? = null) : ConvertibleToJava<TimerTriggerArgs>

The properties of a timer trigger.

Constructors

Link copied to clipboard
constructor(name: Output<String>, schedule: Output<String>, status: Output<Either<String, TriggerStatus>>? = null)

Properties

Link copied to clipboard
val name: Output<String>

The name of the trigger.

Link copied to clipboard
val schedule: Output<String>

The CRON expression for the task schedule

Link copied to clipboard
val status: Output<Either<String, TriggerStatus>>? = null

The current status of trigger.

Functions

Link copied to clipboard
open override fun toJava(): TimerTriggerArgs