Pipeline Parameters

    The class represents a reference to future data that will be passed to the pipeline or produced by a task.

    When your pipeline function is called, each function argument will be a object. You can pass those objects to the components as arguments to instantiate them and create tasks. A can also represent an intermediate value that you pass between pipeline tasks. Each task has outputs and you can get references to them from the dictionary. The task output references can again be passed to other components as arguments.

    The following code sample shows how to define a pipeline with parameters: