JobRecurrenceScheduleArgs

data class JobRecurrenceScheduleArgs(val hours: Output<List<Int>>? = null, val minutes: Output<List<Int>>? = null, val monthDays: Output<List<Int>>? = null, val monthlyOccurrences: Output<List<JobRecurrenceScheduleMonthlyOccurrenceArgs>>? = null, val weekDays: Output<List<DayOfWeek>>? = null) : ConvertibleToJava<JobRecurrenceScheduleArgs>

Constructors

Link copied to clipboard
constructor(hours: Output<List<Int>>? = null, minutes: Output<List<Int>>? = null, monthDays: Output<List<Int>>? = null, monthlyOccurrences: Output<List<JobRecurrenceScheduleMonthlyOccurrenceArgs>>? = null, weekDays: Output<List<DayOfWeek>>? = null)

Properties

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

Gets or sets the hours of the day that the job should execute at.

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

Gets or sets the minutes of the hour that the job should execute at.

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

Gets or sets the days of the month that the job should execute on. Must be between 1 and 31.

Link copied to clipboard

Gets or sets the occurrences of days within a month.

Link copied to clipboard
val weekDays: Output<List<DayOfWeek>>? = null

Gets or sets the days of the week that the job should execute on.

Functions

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