Class: Aws::GuardDuty::Types::FindingCriteria

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-guardduty/types.rb

Overview

Note:

When making an API call, you may pass FindingCriteria data as a hash:

{
  criterion: {
    "__string" => {
      eq: ["__string"],
      gt: 1,
      gte: 1,
      lt: 1,
      lte: 1,
      neq: ["__string"],
    },
  },
}

Represents the criteria used for querying findings.

Instance Attribute Summary collapse

Instance Attribute Details

#criterionHash<String,Types::Condition>

Represents a map of finding properties that match specified conditions and values when querying findings.

Returns:



1049
1050
1051
1052
# File 'lib/aws-sdk-guardduty/types.rb', line 1049

class FindingCriteria < Struct.new(
  :criterion)
  include Aws::Structure
end