Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

A view of architecture.json


An Amazon Data Pipeline definition, e.g., architecture.json, is used to launch a pipeline via the commands below. The parameter values denoted by PipelineName & PipelineCode haveto be provided by the user; teams can set-up naming and unique identification code conventions.


  # Create a pipeline node, a code is returned
  >> aws datapipeline create-pipeline --name **PipelineName** --unique-id **PipelineCode**
  → {code}

  # Submit the pipeline design
  >> aws datapipeline put-pipeline-definition --pipeline-id {code} --pipeline-definition file://architecture.json

  # Add tags to the pipeline, if required.
  >> aws datapipeline add-tags --pipeline-id {code} --tags key=Purpose,value=SignalsProcessing

  # Activate the pipeline.
  >> aws datapipeline activate-pipeline --pipeline-id {code}