Values.RuleExecutionSourceRepresents information about each time a rule is run as part of the pipeline execution for a pipeline configured with conditions.
type nonrec t = {ruleExecutionId : RuleExecutionId.t option;The execution ID for the run of the rule.
*)status : RuleExecutionStatus.t option;The status of the run of the rule, such as FAILED.
*)summary : ExecutionSummary.t option;A summary of the run of the rule.
*)lastStatusChange : Timestamp.t option;The last status change of the rule.
*)token : RuleExecutionToken.t option;The system-generated token used to identify a unique request.
*)lastUpdatedBy : LastUpdatedBy.t option;The ARN of the user who last changed the rule.
*)externalExecutionId : ExecutionId.t option;The external ID of the run of the rule.
*)externalExecutionUrl : Url.t option;The URL of a resource external to Amazon Web Services that is used when running the rule (for example, an external repository URL).
*)errorDetails : ErrorDetails.t option;}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of RuleExecutionId.t
| `Structure of (string * [> `String of Code.t ]) list
| `Timestamp of Timestamp.t ])
list ]