Module Values.GetFindingsTrendsV2RequestSource

Returns findings trend data based on the specified criteria. This operation helps you analyze patterns and changes in findings over time.

Sourcetype nonrec t = {
  1. filters : FindingsTrendsFilters.t option;
    (*

    The filters to apply to the findings trend data.

    *)
  2. startTime : Timestamp.t;
    (*

    The starting timestamp for the time period to analyze findings trends, in ISO 8601 format.

    *)
  3. endTime : Timestamp.t;
    (*

    The ending timestamp for the time period to analyze findings trends, in ISO 8601 format.

    *)
  4. nextToken : NextToken.t option;
    (*

    The token to use for paginating results. This value is returned in the response if more results are available.

    *)
  5. maxResults : MaxResults.t option;
    (*

    The maximum number of trend data points to return in a single response.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?nextToken:??? -> ?maxResults:??? -> startTime:Timestamp.t -> endTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of NextToken.t | `Structure of (string * Awso.Botodata.value) list | `Timestamp of Timestamp.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