WeeklyScheduleArgs

data class WeeklyScheduleArgs(val dayOfWeek: Output<Either<String, WeekDay>>, val intervalWeeks: Output<Int>) : ConvertibleToJava<WeeklyScheduleArgs>

For schedules like: 'recur every Monday' or 'recur every 3 weeks on Wednesday'.

Constructors

Link copied to clipboard
constructor(dayOfWeek: Output<Either<String, WeekDay>>, intervalWeeks: Output<Int>)

Properties

Link copied to clipboard
val dayOfWeek: Output<Either<String, WeekDay>>

Specifies on which day of the week the maintenance occurs.

Link copied to clipboard
val intervalWeeks: Output<Int>

Specifies the number of weeks between each set of occurrences.

Functions

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