Skip to content

Update Pipeline Execution

sagemaker_update_pipeline_execution R Documentation

Updates a pipeline execution

Description

Updates a pipeline execution.

Usage

sagemaker_update_pipeline_execution(PipelineExecutionArn,
  PipelineExecutionDescription, PipelineExecutionDisplayName,
  ParallelismConfiguration)

Arguments

PipelineExecutionArn

[required] The Amazon Resource Name (ARN) of the pipeline execution.

PipelineExecutionDescription

The description of the pipeline execution.

PipelineExecutionDisplayName

The display name of the pipeline execution.

ParallelismConfiguration

This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.

Value

A list with the following syntax:

list(
  PipelineExecutionArn = "string"
)

Request syntax

svc$update_pipeline_execution(
  PipelineExecutionArn = "string",
  PipelineExecutionDescription = "string",
  PipelineExecutionDisplayName = "string",
  ParallelismConfiguration = list(
    MaxParallelExecutionSteps = 123
  )
)