Module Values.ExecutionDetailsSource

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

Sourcetype nonrec t = {
  1. summary : ExecutionSummary.t option;
    (*

    The summary of the current status of the actions.

    *)
  2. externalExecutionId : ExecutionId.t option;
    (*

    The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy.

    *)
  3. percentComplete : Percentage.t option;
    (*

    The percentage of work completed on the action, represented on a scale of 0 to 100 percent.

    *)
}
Sourceval make : ?summary:??? -> ?externalExecutionId:??? -> ?percentComplete:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Percentage.t | `String of ExecutionSummary.t ]) 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