List Findings
| macie2_list_findings | R Documentation | 
Retrieves a subset of information about one or more findings¶
Description¶
Retrieves a subset of information about one or more findings.
Usage¶
macie2_list_findings(findingCriteria, maxResults, nextToken,
  sortCriteria)
Arguments¶
| findingCriteria | The criteria to use to filter the results. | 
| maxResults | The maximum number of items to include in each page of the response. | 
| nextToken | The nextToken string that specifies which page of results to return in a paginated response. | 
| sortCriteria | The criteria to use to sort the results. | 
Value¶
A list with the following syntax:
list(
  findingIds = list(
    "string"
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_findings(
  findingCriteria = list(
    criterion = list(
      list(
        eq = list(
          "string"
        ),
        eqExactMatch = list(
          "string"
        ),
        gt = 123,
        gte = 123,
        lt = 123,
        lte = 123,
        neq = list(
          "string"
        )
      )
    )
  ),
  maxResults = 123,
  nextToken = "string",
  sortCriteria = list(
    attributeName = "string",
    orderBy = "ASC"|"DESC"
  )
)