MonthlyRecurrenceArgs

data class MonthlyRecurrenceArgs(val daysOfMonth: Output<List<Int>>, val endTime: Output<String>? = null, val recurrenceType: Output<String>, val startTime: Output<String>? = null) : ConvertibleToJava<MonthlyRecurrenceArgs>

Monthly recurrence object.

Constructors

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

Properties

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

Specifies the values for monthly 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 'Monthly'.

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

Start time for recurrence.

Functions

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