TriggerCondition

data class TriggerCondition(val crawlState: String? = null, val crawlerName: String? = null, val jobName: String? = null, val logicalOperator: String? = null, val state: String? = null)

Defines a condition under which a trigger fires.

Constructors

Link copied to clipboard
constructor(crawlState: String? = null, crawlerName: String? = null, jobName: String? = null, logicalOperator: String? = null, state: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val crawlerName: String? = null

The name of the crawler to which this condition applies.

Link copied to clipboard
val crawlState: String? = null

The state of the crawler to which this condition applies.

Link copied to clipboard
val jobName: String? = null

The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

Link copied to clipboard
val logicalOperator: String? = null

A logical operator.

Link copied to clipboard
val state: String? = null

The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.