Interface TriggerConfig

interface TriggerConfig {
    cron_expression?: string;
    timezone?: string;
    run_once?: boolean;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

cron_expression?: string

CRON: required. e.g. "0 9 * * *" for 9am daily

timezone?: string

CRON: optional. e.g. "America/New_York"

run_once?: boolean

CRON: if true, run once then remove EventBridge rule