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/databrew.ts?docs=full";

Represents one or more dates and times when a job is to run.

interface Schedule {
AccountId?: string | null;
CreateDate?: Date | number | null;
CreatedBy?: string | null;
CronExpression?: string | null;
JobNames?: string[] | null;
LastModifiedBy?: string | null;
LastModifiedDate?: Date | number | null;
Name: string;
ResourceArn?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
AccountId?: string | null
[src]

The ID of the Amazon Web Services account that owns the schedule.

§
CreateDate?: Date | number | null
[src]

The date and time that the schedule was created.

§
CreatedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who created the schedule.

§
CronExpression?: string | null
[src]

The dates and times when the job is to run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.

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

A list of jobs to be run, according to the schedule.

§
LastModifiedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who last modified the schedule.

§
LastModifiedDate?: Date | number | null
[src]

The date and time when the schedule was last modified.

§
Name: string
[src]

The name of the schedule.

§
ResourceArn?: string | null
[src]

The Amazon Resource Name (ARN) of the schedule.

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

Metadata tags that have been applied to the schedule.