Module Values.FindingAggregationAccountDetailsSource

Contains information about the findings for an Amazon Web Services account in an organization unused access analyzer.

Sourcetype nonrec t = {
  1. account : String_.t option;
    (*

    The ID of the Amazon Web Services account for which unused access finding details are provided.

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

    The number of active unused access findings for the specified Amazon Web Services account.

    *)
  3. details : FindingAggregationAccountDetailsMap.t option;
    (*

    Provides the number of active findings for each type of unused access for the specified Amazon Web Services account.

    *)
}
Sourceval make : ?account:??? -> ?numberOfActiveFindings:??? -> ?details:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Map of ([> `String of String_.t ] * [> `Integer of Integer.t ]) list | `String of String_.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