Activate Pipeline Request

Request body for activating a pipeline.

Data ProcessingETLWorkflowsData PipelineAutomation

Properties

Name Type Description
pipelineId string
startTimestamp string
View JSON Schema on GitHub

JSON Schema

activate-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/activate-pipeline-request-schema.json",
  "title": "Activate Pipeline Request",
  "description": "Request body for activating a pipeline.",
  "type": "object",
  "required": [
    "pipelineId"
  ],
  "properties": {
    "pipelineId": {
      "type": "string"
    },
    "startTimestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}