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

Action

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

Defines an action to be initiated by a trigger.

interface Action {
Arguments?: {
[key: string]: string | null | undefined;
}
| null;
CrawlerName?: string | null;
JobName?: string | null;
NotificationProperty?: NotificationProperty | null;
SecurityConfiguration?: string | null;
Timeout?: number | null;
}

§Properties

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

The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

§
CrawlerName?: string | null
[src]

The name of the crawler to be used with this action.

§
JobName?: string | null
[src]

The name of a job to be run.

§
NotificationProperty?: NotificationProperty | null
[src]

Specifies configuration properties of a job run notification.

§
SecurityConfiguration?: string | null
[src]

The name of the SecurityConfiguration structure to be used with this action.

§
Timeout?: number | null
[src]

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.