CronArgs

data class CronArgs(val expression: Output<String>? = null, val startTime: Output<String>? = null, val timeZone: Output<String>? = null) : ConvertibleToJava<CronArgs>

The workflow trigger cron for ComputeStartStop schedule type.

Constructors

Link copied to clipboard
constructor(expression: Output<String>? = null, startTime: Output<String>? = null, timeZone: Output<String>? = null)

Properties

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

Required Specifies cron expression of schedule. The expression should follow NCronTab format.

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

The start time in yyyy-MM-ddTHH:mm:ss format.

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

Specifies time zone in which the schedule runs. TimeZone should follow Windows time zone format. Refer: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-time-zones?view=windows-11

Functions

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