Values_0.DetectMitigationActionExecutionSourceDescribes which mitigation actions should be executed.
type nonrec t = {taskId : MitigationActionsTaskId.t option;The unique identifier of the task.
*)violationId : ViolationId.t option;The unique identifier of the violation.
*)actionName : MitigationActionName.t option;The friendly name that uniquely identifies the mitigation action.
*)thingName : DeviceDefenderThingName.t option;The name of the thing.
*)executionStartDate : Timestamp.t option;The date a mitigation action was started.
*)executionEndDate : Timestamp.t option;The date a mitigation action ended.
*)status : DetectMitigationActionExecutionStatus.t option;The status of a mitigation action.
*)errorCode : DetectMitigationActionExecutionErrorCode.t option;The error code of a mitigation action.
*)message : ErrorMessage.t option;The message of a mitigation action.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of MitigationActionsTaskId.t
| `Timestamp of Timestamp.t ])
list ]