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

CreateScheduleRequest

import type { CreateScheduleRequest } from "https://aws-api.deno.dev/v0.3/services/databrew.ts?docs=full";
interface CreateScheduleRequest {
CronExpression: string;
JobNames?: string[] | null;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
CronExpression: string
[src]

The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.

§
JobNames?: string[] | null
[src]

The name or names of one or more jobs to be run.

§
Name: string
[src]

A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Metadata tags to apply to this schedule.