Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Schedule

import type { Schedule } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

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

interface Schedule {
ScheduleExpression?: string | null;
State?: ScheduleState | null;
}

§Properties

§
ScheduleExpression?: string | null
[src]

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

§
State?: ScheduleState | null
[src]

The state of the schedule.