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

Predicate

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

Defines the predicate of the trigger, which determines when it fires.

interface Predicate {
Conditions?: Condition[] | null;
Logical?: Logical | null;
}

§Properties

§
Conditions?: Condition[] | null
[src]

A list of the conditions that determine when the trigger will fire.

§
Logical?: Logical | null
[src]

An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.