Create Pipeline Request

Request body for creating a new pipeline.

Data ProcessingETLWorkflowsData PipelineAutomation

Properties

Name Type Description
name string
uniqueId string
description string
tags array
View JSON Schema on GitHub

JSON Schema

create-pipeline-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-pipeline/json-schema/create-pipeline-request-schema.json",
  "title": "Create Pipeline Request",
  "description": "Request body for creating a new pipeline.",
  "type": "object",
  "required": [
    "name",
    "uniqueId"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "uniqueId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "tags": {
      "type": "array"
    }
  }
}