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.
PipelineDisplayNameThe display name of the pipeline.
PipelineDefinitionThe JSON pipeline definition.
PipelineDefinitionS3LocationThe location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location.
PipelineDescriptionThe description of the pipeline.
RoleArnThe Amazon Resource Name (ARN) that the pipeline uses to execute.
ParallelismConfigurationIf 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
)
)