Values.PipelineContextSourceRepresents information about a pipeline to a job worker. PipelineContext contains pipelineArn and pipelineExecutionId for custom action jobs. The pipelineArn and pipelineExecutionId fields are not populated for ThirdParty action jobs.
type nonrec t = {pipelineName : PipelineName.t option;The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
*)stage : StageContext.t option;The stage of the pipeline.
*)action : ActionContext.t option;The context of an action to a job worker in the stage of a pipeline.
*)pipelineArn : PipelineArn.t option;The Amazon Resource Name (ARN) of the pipeline.
*)pipelineExecutionId : PipelineExecutionId.t option;The execution ID of the pipeline.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `String of PipelineName.t
| `Structure of (string * [> `String of StageName.t ]) list ])
list ]