JobScheduleArgs

data class JobScheduleArgs(val enabled: Output<Boolean>? = null, val endTime: Output<String>? = null, val interval: Output<String>? = null, val startTime: Output<String>? = null, val type: Output<JobScheduleType>? = null) : ConvertibleToJava<JobScheduleArgs>

Scheduling properties of a job.

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>? = null, endTime: Output<String>? = null, interval: Output<String>? = null, startTime: Output<String>? = null, type: Output<JobScheduleType>? = null)

Properties

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

Whether or not the schedule is enabled.

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

Schedule end time.

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

Value of the schedule's recurring interval, if the ScheduleType is recurring. ISO8601 duration format.

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

Schedule start time.

Link copied to clipboard
val type: Output<JobScheduleType>? = null

Schedule interval type

Functions

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