ScheduleRecurrenceArgs

data class ScheduleRecurrenceArgs(val expirationDate: Output<String>, val frequency: Output<String>, val interval: Output<Int>? = null, val weekDays: Output<List<String>>? = null) : ConvertibleToJava<ScheduleRecurrenceArgs>

Constructors

Link copied to clipboard
fun ScheduleRecurrenceArgs(expirationDate: Output<String>, frequency: Output<String>, interval: Output<Int>? = null, weekDays: Output<List<String>>? = null)

Functions

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

Properties

Link copied to clipboard
val expirationDate: Output<String>

When the recurrence will expire in RFC-3339 format.

Link copied to clipboard
val frequency: Output<String>

The frequency of the recurrence. Possible values are Daily and Weekly.

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

The interval to invoke the schedule on. Possible values are between 1 and 365.

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

The interval to invoke the schedule on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.