TriggerAction

data class TriggerAction(val arguments: Any? = null, val crawlerName: String? = null, val jobName: String? = null, val notificationProperty: TriggerNotificationProperty? = null, val securityConfiguration: String? = null, val timeout: Int? = null)

The actions initiated by this trigger.

Constructors

Link copied to clipboard
constructor(arguments: Any? = null, crawlerName: String? = null, jobName: String? = null, notificationProperty: TriggerNotificationProperty? = null, securityConfiguration: String? = null, timeout: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val arguments: Any? = null

The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

Link copied to clipboard
val crawlerName: String? = null

The name of the crawler to be used with this action.

Link copied to clipboard
val jobName: String? = null

The name of a job to be executed.

Link copied to clipboard

Specifies configuration properties of a job run notification.

Link copied to clipboard

The name of the SecurityConfiguration structure to be used with this action.

Link copied to clipboard
val timeout: Int? = null

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.