Module Values.PipelineContextSource

Represents 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. stage : StageContext.t option;
    (*

    The stage of the pipeline.

    *)
  3. action : ActionContext.t option;
    (*

    The context of an action to a job worker in the stage of a pipeline.

    *)
  4. pipelineArn : PipelineArn.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline.

    *)
  5. pipelineExecutionId : PipelineExecutionId.t option;
    (*

    The execution ID of the pipeline.

    *)
}
Sourceval make : ?pipelineName:??? -> ?stage:??? -> ?action:??? -> ?pipelineArn:??? -> ?pipelineExecutionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PipelineName.t | `Structure of (string * [> `String of StageName.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