ScheduleArgs

data class ScheduleArgs(val effectiveFrom: Output<String>? = null, val effectiveUntil: Output<String>? = null, val recurrences: Output<List<Any>>? = null, val timeZone: Output<String>? = null) : ConvertibleToJava<ScheduleArgs>

Scheduling configuration for a given alert processing rule.

Constructors

Link copied to clipboard
constructor(effectiveFrom: Output<String>? = null, effectiveUntil: Output<String>? = null, recurrences: Output<List<Any>>? = null, timeZone: Output<String>? = null)

Properties

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

Scheduling effective from time. Date-Time in ISO-8601 format without timezone suffix.

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

Scheduling effective until time. Date-Time in ISO-8601 format without timezone suffix.

Link copied to clipboard
val recurrences: Output<List<Any>>? = null

List of recurrences.

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

Scheduling time zone.

Functions

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