Values.ActionExecutionSourceRepresents information about the run of an action.
type nonrec t = {actionExecutionId : ActionExecutionId.t option;ID of the workflow action execution in the current stage. Use the GetPipelineState action to retrieve the current action execution details of the current stage. For older executions, this field might be empty. The action execution ID is available for executions run on or after March 2020.
*)status : ActionExecutionStatus.t option;The status of the action, or for a completed action, the last status of the action.
*)summary : ExecutionSummary.t option;A summary of the run of the action.
*)lastStatusChange : Timestamp.t option;The last status change of the action.
*)token : ActionExecutionToken.t option;The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the GetPipelineState command. It is used to validate that the approval request corresponding to this token is still valid.
*)lastUpdatedBy : LastUpdatedBy.t option;The ARN of the user who last changed the pipeline.
*)externalExecutionId : ExecutionId.t option;The external ID of the run of the action.
*)externalExecutionUrl : Url.t option;The URL of a resource external to Amazon Web Services that is used when running the action (for example, an external repository URL).
*)percentComplete : Percentage.t option;A percentage of completeness of the action as it runs.
*)errorDetails : ErrorDetails.t option;The details of an error returned by a URL external to Amazon Web Services.
*)logStreamARN : LogStreamARN.t option;The Amazon Resource Name (ARN) of the log stream for the action compute.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Percentage.t
| `String of ActionExecutionId.t
| `Structure of (string * [> `String of Code.t ]) list
| `Timestamp of Timestamp.t ])
list ]