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.
datapipeline_activate_pipeline(pipelineId, parameterValues,
startTimestamp)
An empty list.
[required] The ID of the pipeline.
A list of parameter values to pass to the pipeline at activation.
The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.
svc$activate_pipeline(
pipelineId = "string",
parameterValues = list(
list(
id = "string",
stringValue = "string"
)
),
startTimestamp = as.POSIXct(
"2015-01-01"
)
)