paws.security.identity (version 0.1.0)

guardduty_create_filter: Creates a filter using the specified finding criteria

Description

Creates a filter using the specified finding criteria.

Usage

guardduty_create_filter(Action, ClientToken, Description, DetectorId,
  FindingCriteria, Name, Rank)

Arguments

Action

Specifies the action that is to be applied to the findings that match the filter.

ClientToken

The idempotency token for the create request.

Description

The description of the filter.

DetectorId

[required] The unique ID of the detector that you want to update.

FindingCriteria

[required] Represents the criteria to be used in the filter for querying findings.

Name

[required] The name of the filter.

Rank

Specifies the position of the filter in the list of current filters. Also specifies the order in which this filter is applied to the findings.

Request syntax

svc$create_filter(
  Action = "NOOP"|"ARCHIVE",
  ClientToken = "string",
  Description = "string",
  DetectorId = "string",
  FindingCriteria = list(
    Criterion = list(
      list(
        Eq = list(
          "string"
        ),
        Gt = 123,
        Gte = 123,
        Lt = 123,
        Lte = 123,
        Neq = list(
          "string"
        )
      )
    )
  ),
  Name = "string",
  Rank = 123
)