Skip to content

Activate Pipeline

datapipeline_activate_pipeline R Documentation

Validates the specified pipeline and starts processing pipeline tasks

Description

Validates the specified pipeline and starts processing pipeline tasks. If the pipeline does not pass validation, activation fails.

If you need to pause the pipeline to investigate an issue with a component, such as a data source or script, call deactivate_pipeline.

To activate a finished pipeline, modify the end date for the pipeline and then activate it.

Usage

datapipeline_activate_pipeline(pipelineId, parameterValues,
  startTimestamp)

Arguments

pipelineId

[required] The ID of the pipeline.

parameterValues

A list of parameter values to pass to the pipeline at activation.

startTimestamp

The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.

Value

An empty list.

Request syntax

svc$activate_pipeline(
  pipelineId = "string",
  parameterValues = list(
    list(
      id = "string",
      stringValue = "string"
    )
  ),
  startTimestamp = as.POSIXct(
    "2015-01-01"
  )
)