Values.ManagedActionHistoryItemSourceThe record of a completed or failed managed action.
type nonrec t = {actionId : String_.t option;A unique identifier for the managed action.
*)actionType : ActionType.t option;The type of the managed action.
*)actionDescription : String_.t option;A description of the managed action.
*)failureType : FailureType.t option;If the action failed, the type of failure.
*)status : ActionHistoryStatus.t option;The status of the action.
*)failureDescription : String_.t option;If the action failed, a description of the failure.
*)executedTime : Timestamp.t option;The date and time that the action started executing.
*)finishedTime : Timestamp.t option;The date and time that the action finished executing.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]