You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Macie2::Types::ListFindingsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListFindingsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  finding_criteria: {
    criterion: {
      "__string" => {
        eq: ["__string"],
        eq_exact_match: ["__string"],
        gt: 1,
        gte: 1,
        lt: 1,
        lte: 1,
        neq: ["__string"],
      },
    },
  },
  max_results: 1,
  next_token: "__string",
  sort_criteria: {
    attribute_name: "__string",
    order_by: "ASC", # accepts ASC, DESC
  },
}

Specifies criteria for filtering, sorting, and paginating the results of a request for information about findings.

Instance Attribute Summary collapse

Instance Attribute Details

#finding_criteriaTypes::FindingCriteria

Specifies, as a map, one or more property-based conditions that filter the results of a query for findings.

Returns:

  • (Types::FindingCriteria)

    Specifies, as a map, one or more property-based conditions that filter the results of a query for findings.

    .

#max_resultsInteger

Returns:

  • (Integer)

#next_tokenString

Returns:

  • (String)

#sort_criteriaTypes::SortCriteria

Specifies criteria for sorting the results of a request for findings.

Returns:

  • (Types::SortCriteria)

    Specifies criteria for sorting the results of a request for findings.

    .