WeeklyRecurrenceArgs

data class WeeklyRecurrenceArgs(val daysOfWeek: Output<List<Either<String, DaysOfWeek>>>, val endTime: Output<String>? = null, val recurrenceType: Output<String>, val startTime: Output<String>? = null) : ConvertibleToJava<WeeklyRecurrenceArgs>

Weekly recurrence object.

Constructors

Link copied to clipboard
constructor(daysOfWeek: Output<List<Either<String, DaysOfWeek>>>, endTime: Output<String>? = null, recurrenceType: Output<String>, startTime: Output<String>? = null)

Properties

Link copied to clipboard
val daysOfWeek: Output<List<Either<String, DaysOfWeek>>>

Specifies the values for weekly recurrence pattern.

Link copied to clipboard
val endTime: Output<String>? = null

End time for recurrence.

Link copied to clipboard
val recurrenceType: Output<String>

Specifies when the recurrence should be applied. Expected value is 'Weekly'.

Link copied to clipboard
val startTime: Output<String>? = null

Start time for recurrence.

Functions

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