Module Values.AccountFindingsMetricSource

A summary of findings metrics for an account on a specified date.

Sourcetype nonrec t = {
  1. date : Timestamp.t option;
    (*

    The date from which the findings metrics were retrieved.

    *)
  2. newFindings : FindingMetricsValuePerSeverity.t option;
    (*

    The number of new findings of each severity on the specified date.

    *)
  3. closedFindings : FindingMetricsValuePerSeverity.t option;
    (*

    The number of closed findings of each severity on the specified date.

    *)
  4. openFindings : FindingMetricsValuePerSeverity.t option;
    (*

    The number of open findings of each severity as of the specified date.

    *)
  5. meanTimeToClose : FindingMetricsValuePerSeverity.t option;
    (*

    The average time in days it takes to close findings of each severity as of a specified date.

    *)
}
Sourceval make : ?date:??? -> ?newFindings:??? -> ?closedFindings:??? -> ?openFindings:??? -> ?meanTimeToClose:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t ]) list | `Timestamp of Timestamp.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