ScheduleArgs

data class ScheduleArgs(val action: Output<Any>, val description: Output<String>? = null, val displayName: Output<String>? = null, val isEnabled: Output<Boolean>? = null, val properties: Output<Map<String, String>>? = null, val tags: Output<Map<String, String>>? = null, val trigger: Output<Either<CronTriggerArgs, RecurrenceTriggerArgs>>) : ConvertibleToJava<ScheduleArgs>

Base definition of a schedule

Constructors

Link copied to clipboard
constructor(action: Output<Any>, description: Output<String>? = null, displayName: Output<String>? = null, isEnabled: Output<Boolean>? = null, properties: Output<Map<String, String>>? = null, tags: Output<Map<String, String>>? = null, trigger: Output<Either<CronTriggerArgs, RecurrenceTriggerArgs>>)

Properties

Link copied to clipboard
val action: Output<Any>

Required Specifies the action of the schedule

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

The asset description text.

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

Display name of schedule.

Link copied to clipboard
val isEnabled: Output<Boolean>? = null

Is the schedule enabled?

Link copied to clipboard
val properties: Output<Map<String, String>>? = null

The asset property dictionary.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Tag dictionary. Tags can be added, removed, and updated.

Link copied to clipboard

Required Specifies the trigger details

Functions

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