Module Values_0.DetectMitigationActionsTaskStatisticsSource

The statistics of a mitigation action task.

Sourcetype nonrec t = {
  1. actionsExecuted : GenericLongValue.t option;
    (*

    The actions that were performed.

    *)
  2. actionsSkipped : GenericLongValue.t option;
    (*

    The actions that were skipped.

    *)
  3. actionsFailed : GenericLongValue.t option;
    (*

    The actions that failed.

    *)
}
Sourceval make : ?actionsExecuted:??? -> ?actionsSkipped:??? -> ?actionsFailed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of GenericLongValue.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t