Module Values.ExternalAccessFindingsStatisticsSource

Provides aggregate statistics about the findings for the specified external access analyzer.

Sourcetype nonrec t = {
  1. resourceTypeStatistics : ResourceTypeStatisticsMap.t option;
    (*

    The total number of active cross-account and public findings for each resource type of the specified external access analyzer.

    *)
  2. totalActiveFindings : Integer.t option;
    (*

    The number of active findings for the specified external access analyzer.

    *)
  3. totalArchivedFindings : Integer.t option;
    (*

    The number of archived findings for the specified external access analyzer.

    *)
  4. totalResolvedFindings : Integer.t option;
    (*

    The number of resolved findings for the specified external access analyzer.

    *)
}
Sourceval make : ?resourceTypeStatistics:??? -> ?totalActiveFindings:??? -> ?totalArchivedFindings:??? -> ?totalResolvedFindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Integer of Integer.t ]) list ]) 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