Schedule Args
data class ScheduleArgs(val action: Output<Either<EndpointScheduleActionArgs, JobScheduleActionArgs>>, 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<Either<EndpointScheduleActionArgs, JobScheduleActionArgs>>, 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>>)