Type Alias CorrelationDef

A correlation definition used to match a CloudEvent to a specific workflow instance.

type CorrelationDef = {
    contextAttributeName:
        | "id"
        | "status"
        | "appId"
        | "spaceId"
        | "datasetId";
    contextAttributeValue?: string;
}
Index

Properties

contextAttributeName: "id" | "status" | "appId" | "spaceId" | "datasetId"

The name of the CloudEvent extension context attribute to match on.

contextAttributeValue?: string