Module Values.GetPipelineExecutionOutputSource

Represents the output of a GetPipelineExecution action.

Sourcetype nonrec t = {
  1. pipelineExecution : PipelineExecution.t option;
    (*

    Represents information about the execution of a pipeline.

    *)
}
Sourcetype nonrec error = [
  1. | `PipelineExecutionNotFoundException of PipelineExecutionNotFoundException.t
  2. | `PipelineNotFoundException of PipelineNotFoundException.t
  3. | `ValidationException of ValidationException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?pipelineExecution:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `PipelineExecutionNotFoundException of unit | `PipelineNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `PipelineExecutionNotFoundException of unit | `PipelineNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of PipelineVersion.t | `List of [> `Structure of (string * [> `String of ArtifactName.t | `Timestamp of Timestamp.t ]) list ] list | `String of PipelineName.t | `Structure of (string * [> `Enum of string | `String of TriggerDetail.t ]) list ]) 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