CrawlerScheduleArgs

data class CrawlerScheduleArgs(val scheduleExpression: Output<String>? = null) : ConvertibleToJava<CrawlerScheduleArgs>

A scheduling object using a cron statement to schedule an event.

Constructors

Link copied to clipboard
constructor(scheduleExpression: Output<String>? = null)

Properties

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

A cron expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *).

Functions

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