Module Values.UnusedAccessFindingsStatisticsSource

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

Sourcetype nonrec t = {
  1. unusedAccessTypeStatistics : UnusedAccessTypeStatisticsList.t option;
    (*

    A list of details about the total number of findings for each type of unused access for the analyzer.

    *)
  2. topAccounts : AccountAggregations.t option;
    (*

    A list of one to ten Amazon Web Services accounts that have the most active findings for the unused access analyzer.

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

    The total number of active findings for the unused access analyzer.

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

    The total number of archived findings for the unused access analyzer.

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

    The total number of resolved findings for the unused access analyzer.

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