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

Class: Aws::Macie2::Types::UpdateFindingsFilterRequest

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

Overview

Note:

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

{
  action: "ARCHIVE", # accepts ARCHIVE, NOOP
  description: "__string",
  finding_criteria: {
    criterion: {
      "__string" => {
        eq: ["__string"],
        eq_exact_match: ["__string"],
        gt: 1,
        gte: 1,
        lt: 1,
        lte: 1,
        neq: ["__string"],
      },
    },
  },
  id: "__string", # required
  name: "__string",
  position: 1,
}

Specifies the criteria and other settings for a findings filter.

Instance Attribute Summary collapse

Instance Attribute Details

#actionString

The action to perform on findings that meet the filter criteria. To suppress (automatically archive) findings that meet the criteria, set this value to ARCHIVE. Valid values are:

Possible values:

  • ARCHIVE
  • NOOP

Returns:

  • (String)

    The action to perform on findings that meet the filter criteria.

#descriptionString

Returns:

  • (String)

#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.

    .

#idString

Returns:

  • (String)

#nameString

Returns:

  • (String)

#positionInteger

Returns:

  • (Integer)