Describe the feature you'd like
When Pipeline object initialize and the pipeline name exists, add information of step and parameters into pipeline object.
>from sagemaker.workflow.pipeline import Pipeline
>pipeline = Pipeline(name='<existing-pipeline-name>')
>pipeline
Pipeline(name='<existing-pipeline-name>', parameters=[], steps=[], sagemaker_session=<sagemaker.session.Session object at xxxxxxx>)
How would this feature be used? Please describe.
- Easily detect the pipeline name is existing or not.
- Easy to understand how to execute existing pipeline.