ComputeRecurrenceScheduleArgs

data class ComputeRecurrenceScheduleArgs(val hours: Output<List<Int>>, val minutes: Output<List<Int>>, val monthDays: Output<List<Int>>? = null, val weekDays: Output<List<Either<String, ComputeWeekDay>>>? = null) : ConvertibleToJava<ComputeRecurrenceScheduleArgs>

Constructors

Link copied to clipboard
constructor(hours: Output<List<Int>>, minutes: Output<List<Int>>, monthDays: Output<List<Int>>? = null, weekDays: Output<List<Either<String, ComputeWeekDay>>>? = null)

Properties

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

Required List of hours for the schedule.

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

Required List of minutes for the schedule.

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

List of month days for the schedule

Link copied to clipboard
val weekDays: Output<List<Either<String, ComputeWeekDay>>>? = null

List of days for the schedule.

Functions

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