Values_0.AuditMitigationActionExecutionMetadataSourceReturned by ListAuditMitigationActionsTask, this object contains information that describes a mitigation action that has been started.
type nonrec t = {taskId : MitigationActionsTaskId.t option;The unique identifier for the task that applies the mitigation action.
*)findingId : FindingId.t option;The unique identifier for the findings to which the task and associated mitigation action are applied.
*)actionName : MitigationActionName.t option;The friendly name of the mitigation action being applied by the task.
*)actionId : MitigationActionId.t option;The unique identifier for the mitigation action being applied by the task.
*)status : AuditMitigationActionsExecutionStatus.t option;The current status of the task being executed.
*)startTime : Timestamp.t option;The date and time when the task was started.
*)endTime : Timestamp.t option;The date and time when the task was completed or canceled. Blank if the task is still running.
*)errorCode : ErrorCode.t option;If an error occurred, the code that indicates which type of error occurred.
*)message : ErrorMessage.t option;If an error occurred, a message that describes the error.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of MitigationActionsTaskId.t
| `Timestamp of Timestamp.t ])
list ]