Module Values_2.UpdatePipelineRequestSource

Updates a pipeline.

Sourcetype nonrec t = {
  1. pipelineName : Values_1.PipelineName.t;
    (*

    The name of the pipeline to update.

    *)
  2. pipelineDisplayName : Values_1.PipelineName.t option;
    (*

    The display name of the pipeline.

    *)
  3. pipelineDefinition : Values_1.PipelineDefinition.t option;
    (*

    The JSON pipeline definition.

    *)
  4. pipelineDefinitionS3Location : Values_1.PipelineDefinitionS3Location.t option;
    (*

    The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location.

    *)
  5. pipelineDescription : Values_1.PipelineDescription.t option;
    (*

    The description of the pipeline.

    *)
  6. roleArn : Values_0.RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) that the pipeline uses to execute.

    *)
  7. parallelismConfiguration : Values_1.ParallelismConfiguration.t option;
    (*

    If specified, it applies to all executions of this pipeline by default.

    *)
}
Sourceval context_ : string
Sourceval make : ?pipelineDisplayName:??? -> ?pipelineDefinition:??? -> ?pipelineDefinitionS3Location:??? -> ?pipelineDescription:??? -> ?roleArn:??? -> ?parallelismConfiguration:??? -> pipelineName:Values_1.PipelineName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.PipelineName.t | `Structure of (string * [> `Integer of int | `String of Values_0.BucketName.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t