Job Configuration Schedule Trigger Config Args
    data class JobConfigurationScheduleTriggerConfigArgs(val cronExpression: Output<String>, val parallelism: Output<Int>? = null, val replicaCompletionCount: Output<Int>? = null) : ConvertibleToJava<JobConfigurationScheduleTriggerConfigArgs> 
Cron formatted repeating trigger schedule ("* * * * *") for cronjobs. Properties completions and parallelism would be set to 1 by default
Constructors
Link copied to clipboard
                fun JobConfigurationScheduleTriggerConfigArgs(cronExpression: Output<String>, parallelism: Output<Int>? = null, replicaCompletionCount: Output<Int>? = null)