Module Values.FindingStatisticsSource

Contains information about finding statistics.

Sourcetype nonrec t = {
  1. countBySeverity : CountBySeverity.t option;
    (*

    Represents a list of map of severity to count statistics for a set of findings.

    *)
  2. groupedByAccount : GroupedByAccount.t option;
    (*

    Represents a list of map of accounts with a findings count associated with each account.

    *)
  3. groupedByDate : GroupedByDate.t option;
    (*

    Represents a list of map of dates with a count of total findings generated on each date per severity level.

    *)
  4. groupedByFindingType : GroupedByFindingType.t option;
    (*

    Represents a list of map of finding types with a count of total findings generated for each type. Based on the orderBy parameter, this request returns either the most occurring finding types or the least occurring finding types. If the orderBy parameter is ASC, this will represent the least occurring finding types in your account; otherwise, this will represent the most occurring finding types. The default value of orderBy is DESC.

    *)
  5. groupedByResource : GroupedByResource.t option;
    (*

    Represents a list of map of top resources with a count of total findings.

    *)
  6. groupedBySeverity : GroupedBySeverity.t option;
    (*

    Represents a list of map of total findings for each severity level.

    *)
}
Sourceval make : ?countBySeverity:??? -> ?groupedByAccount:??? -> ?groupedByDate:??? -> ?groupedByFindingType:??? -> ?groupedByResource:??? -> ?groupedBySeverity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `Integer of Integer.t ]) list ]) 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