ScheduledSqlScheduleArgs

data class ScheduledSqlScheduleArgs(val cronExpression: Output<String>? = null, val delay: Output<Int>? = null, val interval: Output<String>? = null, val runImmediately: Output<Boolean>? = null, val timeZone: Output<String>? = null, val type: Output<String>? = null) : ConvertibleToJava<ScheduledSqlScheduleArgs>

Constructors

Link copied to clipboard
constructor(cronExpression: Output<String>? = null, delay: Output<Int>? = null, interval: Output<String>? = null, runImmediately: Output<Boolean>? = null, timeZone: Output<String>? = null, type: Output<String>? = null)

Properties

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

Cron expression, minimum precision is minutes, 24-hour clock. For example, 0 0/1 **indicates that the check is performed every one hour from 00:00. When type is set to Cron, cronExpression must be set.

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

Delay time.

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

Time interval, such as 5m, 1H.

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

Whether to execute the OSS import task immediately after it is created.

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

Time Zone.

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

Check the frequency type. Log Service checks the query and analysis results based on the frequency you configured. The value is as follows: FixedRate: checks the query and analysis results at fixed intervals. Cron: specifies a time interval through a Cron expression, and checks the query and analysis results at the specified time interval. Weekly: Check the query and analysis results at a fixed point in time on the day of the week. Daily: checks the query and analysis results at a fixed time point every day. Hourly: Check query and analysis results every hour.

Functions

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