A step in a pipeline.
| KEY | TYPE | Description |
|---|---|---|
| pipelineStepId | str | The reference to this step. |
| pipelineId | str | The reference to the pipeline this step belongs to. |
| stepName | str | The name of the step. |
| pipelineName | str | The name of the pipeline this step is a part of. |
| createdAt | str | The date and time which this step was created. |
| updatedAt | str | The date and time when this step was last updated. |
| pythonFunctionId | str | The python function_id. |
| stepDependencies | List[str] | List of steps this step depends on. |
| cpuSize | str | CPU size specified for the step function. |
| memory | int | Memory in GB specified for the step function. |
| timeout | int | Timeout for the step in minutes, default is 300 minutes. |
| pythonFunction | PythonFunction | Information about the python function for the step. |
| codeSource | CodeSource | Information about the source code of the step function. |