Module Values.GetFindingStatisticsRequestSource

Retrieves (queries) aggregated statistical data about findings.

Sourcetype nonrec t = {
  1. findingCriteria : FindingCriteria.t option;
    (*

    The criteria to use to filter the query results.

    *)
  2. groupBy : GroupBy.t;
    (*

    The finding property to use to group the query results. Valid values are: classificationDetails.jobId - The unique identifier for the classification job that produced the finding. resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to. severity.description - The severity level of the finding, such as High or Medium. type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.

    *)
  3. size : int option;
    (*

    The maximum number of items to include in each page of the response.

    *)
  4. sortCriteria : FindingStatisticsSortCriteria.t option;
    (*

    The criteria to use to sort the query results.

    *)
}
Sourceval context_ : string
Sourceval make : ?findingCriteria:??? -> ?size:??? -> ?sortCriteria:??? -> groupBy:GroupBy.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `Structure of (string * [> `List of [> `String of string ] list | `Long of Awso.Import.Int64.t ]) list ]) 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