Pipeline ID Name

Contains a pipeline identifier and name.

Data ProcessingETLWorkflowsData PipelineAutomation

Properties

Name Type Description
id string The pipeline identifier
name string The pipeline name
View JSON Schema on GitHub

JSON Schema

pipeline-id-name-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-pipeline/json-schema/pipeline-id-name-schema.json",
  "title": "Pipeline ID Name",
  "description": "Contains a pipeline identifier and name.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The pipeline identifier"
    },
    "name": {
      "type": "string",
      "description": "The pipeline name"
    }
  }
}