Module Values.GetFindingsRequestSource

Returns a list of findings that match the specified criteria. If cross-Region aggregation is enabled, then when you call GetFindings from the home Region, the results include all of the matching findings from both the home Region and linked Regions.

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

    The finding attributes used to define a condition to filter the returned findings. You can filter by up to 10 finding attributes. For each attribute, you can provide up to 20 filter values. Note that in the available filter fields, WorkflowState is deprecated. To search for a finding based on its workflow status, use WorkflowStatus.

    *)
  2. sortCriteria : SortCriteria.t option;
    (*

    The finding attributes used to sort the list of returned findings.

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

    The token that is required for pagination. On your first call to the GetFindings operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.

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

    The maximum number of findings to return.

    *)
}
Sourceval make : ?filters:??? -> ?sortCriteria:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ] list | `String of NextToken.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list ]) 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