Update Pipeline
sagemaker_update_pipeline | R Documentation |
Updates a pipeline¶
Description¶
Updates a pipeline.
Usage¶
sagemaker_update_pipeline(PipelineName, PipelineDisplayName,
PipelineDefinition, PipelineDefinitionS3Location, PipelineDescription,
RoleArn, ParallelismConfiguration)
Arguments¶
PipelineName
[required] The name of the pipeline to update.
PipelineDisplayName
The display name of the pipeline.
PipelineDefinition
The JSON pipeline definition.
PipelineDefinitionS3Location
The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location.
PipelineDescription
The description of the pipeline.
RoleArn
The Amazon Resource Name (ARN) that the pipeline uses to execute.
ParallelismConfiguration
If specified, it applies to all executions of this pipeline by default.
Value¶
A list with the following syntax:
Request syntax¶
svc$update_pipeline(
PipelineName = "string",
PipelineDisplayName = "string",
PipelineDefinition = "string",
PipelineDefinitionS3Location = list(
Bucket = "string",
ObjectKey = "string",
VersionId = "string"
),
PipelineDescription = "string",
RoleArn = "string",
ParallelismConfiguration = list(
MaxParallelExecutionSteps = 123
)
)