Canary Schedule Args
data class CanaryScheduleArgs(val durationInSeconds: Output<Int>? = null, val expression: Output<String>) : ConvertibleToJava<CanaryScheduleArgs>
Properties
Link copied to clipboard
Duration in seconds, for the canary to continue making regular runs according to the schedule in the Expression value.
Link copied to clipboard
Rate expression or cron expression that defines how often the canary is to run. For rate expression, the syntax is rate(number unit)
. unit can be minute
, minutes
, or hour
. For cron expression, the syntax is cron(expression)
. For more information about the syntax for cron expressions, see Scheduling canary runs using cron.