JobScheduleTriggerConfig

data class JobScheduleTriggerConfig(val cronExpression: String, val parallelism: Int? = null, val replicaCompletionCount: Int? = null)

Constructors

Link copied to clipboard
constructor(cronExpression: String, parallelism: Int? = null, replicaCompletionCount: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Cron formatted repeating schedule of a Cron Job.

Link copied to clipboard
val parallelism: Int? = null

Number of parallel replicas of a job that can run at a given time.

Link copied to clipboard

Minimum number of successful replica completions before overall job completion.