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

Trigger

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

Information about a specific trigger.

interface Trigger {
Actions?: Action[] | null;
Description?: string | null;
EventBatchingCondition?: EventBatchingCondition | null;
Id?: string | null;
Name?: string | null;
Predicate?: Predicate | null;
Schedule?: string | null;
State?: TriggerState | null;
Type?: TriggerType | null;
WorkflowName?: string | null;
}

§Properties

§
Actions?: Action[] | null
[src]

The actions initiated by this trigger.

§
Description?: string | null
[src]

A description of this 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.

§
Id?: string | null
[src]

Reserved for future use.

§
Name?: string | null
[src]

The name of the trigger.

§
Predicate?: Predicate | null
[src]

The predicate of this trigger, which defines when it will fire.

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

§
State?: TriggerState | null
[src]

The current state of the trigger.

§
Type?: TriggerType | null
[src]

The type of trigger that this is.

§
WorkflowName?: string | null
[src]

The name of the workflow associated with the trigger.