CanaryScheduleArgs

data class CanaryScheduleArgs(val durationInSeconds: Output<Int>? = null, val expression: Output<String>) : ConvertibleToJava<CanaryScheduleArgs>

Constructors

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

Properties

Link copied to clipboard
val durationInSeconds: Output<Int>? = null

Duration in seconds, for the canary to continue making regular runs according to the schedule in the Expression value.

Link copied to clipboard
val expression: Output<String>

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.

Functions

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