TriggerPredicateArgs

data class TriggerPredicateArgs(val conditions: Output<List<TriggerConditionArgs>>? = null, val logical: Output<String>? = null) : ConvertibleToJava<TriggerPredicateArgs>

The predicate of this trigger, which defines when it will fire.

Constructors

Link copied to clipboard
constructor(conditions: Output<List<TriggerConditionArgs>>? = null, logical: Output<String>? = null)

Properties

Link copied to clipboard
val conditions: Output<List<TriggerConditionArgs>>? = null

A list of the conditions that determine when the trigger will fire.

Link copied to clipboard
val logical: Output<String>? = null

An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

Functions

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