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

CreateTriggerRequest

import type { CreateTriggerRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface CreateTriggerRequest {
Actions: Action[];
Description?: string | null;
EventBatchingCondition?: EventBatchingCondition | null;
Name: string;
Predicate?: Predicate | null;
Schedule?: string | null;
StartOnCreation?: boolean | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
WorkflowName?: string | null;
}

§Properties

§
Actions: Action[]
[src]

The actions initiated by this trigger when it fires.

§
Description?: string | null
[src]

A description of the new trigger.

§
EventBatchingCondition?: EventBatchingCondition | null
[src]

Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

§
Name: string
[src]

The name of the trigger.

§
Predicate?: Predicate | null
[src]

A predicate to specify when the new trigger should fire.

This field is required when the trigger type is CONDITIONAL.

§
Schedule?: 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 * * ? *).

This field is required when the trigger type is SCHEDULED.

§
StartOnCreation?: boolean | null
[src]

Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.

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

The tags to use with this trigger. You may use tags to limit access to the trigger. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

§

The type of the new trigger.

§
WorkflowName?: string | null
[src]

The name of the workflow associated with the trigger.