Module Values.MetricsSummarySource

A summary of metrics for an account as of a specified date.

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

    The date from which the metrics summary information was retrieved.

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

    The number of open findings of each severity.

    *)
  3. categoriesWithMostFindings : CategoriesWithMostFindings.t option;
    (*

    A list of CategoryWithFindingNum objects for the top 5 finding categories with the most findings.

    *)
  4. scansWithMostOpenFindings : ScansWithMostOpenFindings.t option;
    (*

    A list of ScanNameWithFindingNum objects for the top 3 scans with the most number of open findings.

    *)
  5. scansWithMostOpenCriticalFindings : ScansWithMostOpenCriticalFindings.t option;
    (*

    A list of ScanNameWithFindingNum objects for the top 3 scans with the most number of open critical findings.

    *)
}
Sourceval make : ?date:??? -> ?openFindings:??? -> ?categoriesWithMostFindings:??? -> ?scansWithMostOpenFindings:??? -> ?scansWithMostOpenCriticalFindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `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