Package version:

Data flow flowlet

interface Flowlet {
    annotations?: any[];
    description?: string;
    folder?: DataFlowFolder;
    script?: string;
    scriptLines?: string[];
    sinks?: DataFlowSink[];
    sources?: DataFlowSource[];
    transformations?: Transformation[];
    type: "Flowlet";
}

Hierarchy (view full)

Properties

annotations?: any[]

List of tags that can be used for describing the data flow.

description?: string

The description of the data flow.

The folder that this data flow is in. If not specified, Data flow will appear at the root level.

script?: string

Flowlet script.

scriptLines?: string[]

Flowlet script lines.

sinks?: DataFlowSink[]

List of sinks in Flowlet.

sources?: DataFlowSource[]

List of sources in Flowlet.

transformations?: Transformation[]

List of transformations in Flowlet.

type

Polymorphic discriminator, which specifies the different types this object can be