Type Alias Eventdef

type Eventdef = {
    correlation?: tasks.CorrelationDef[];
    dataOnly?: boolean;
    name?: string;
    source?: "system-events.task" | "dataset.updated";
    type?: "com.qlik.v1.task.run.finished" | "com.qlik/active-analytics-orch";
}
Index
correlation?: tasks.CorrelationDef[]

Correlation definitions used to match incoming CloudEvents to this workflow instance.

dataOnly?: boolean

When true, only the event payload is accessible to consuming workflow states. When false, both the payload and context attributes are accessible.

name?: string

A unique name identifying this event definition within the workflow.

source?: "system-events.task" | "dataset.updated"

The CloudEvents source attribute identifying the origin of the event.

type?: "com.qlik.v1.task.run.finished" | "com.qlik/active-analytics-orch"

The CloudEvents type attribute identifying the kind of event.