Skip to content

Get Findings Filter

macie2_get_findings_filter R Documentation

Retrieves the criteria and other settings for a findings filter

Description

Retrieves the criteria and other settings for a findings filter.

Usage

macie2_get_findings_filter(id)

Arguments

id

[required] The unique identifier for the Amazon Macie resource that the request applies to.

Value

A list with the following syntax:

list(
  action = "ARCHIVE"|"NOOP",
  arn = "string",
  description = "string",
  findingCriteria = list(
    criterion = list(
      list(
        eq = list(
          "string"
        ),
        eqExactMatch = list(
          "string"
        ),
        gt = 123,
        gte = 123,
        lt = 123,
        lte = 123,
        neq = list(
          "string"
        )
      )
    )
  ),
  id = "string",
  name = "string",
  position = 123,
  tags = list(
    "string"
  )
)

Request syntax

svc$get_findings_filter(
  id = "string"
)