Class: Aws::GuardDuty::Types::FilterCriterion

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

Overview

Represents a condition that when matched will be added to the response of the operation. Irrespective of using any filter criteria, an administrator account can view the scan entries for all of its member accounts. However, each member account can view the scan entries only for their own account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#criterion_keyString

An enum value representing possible scan properties to match with given scan entries.

<note markdown=“1”> Replace the enum value ‘CLUSTER_NAME` with `EKS_CLUSTER_NAME`. `CLUSTER_NAME` has been deprecated.

</note>

Returns:

  • (String)


2931
2932
2933
2934
2935
2936
# File 'lib/aws-sdk-guardduty/types.rb', line 2931

class FilterCriterion < Struct.new(
  :criterion_key,
  :filter_condition)
  SENSITIVE = []
  include Aws::Structure
end

#filter_conditionTypes::FilterCondition

Contains information about the condition.



2931
2932
2933
2934
2935
2936
# File 'lib/aws-sdk-guardduty/types.rb', line 2931

class FilterCriterion < Struct.new(
  :criterion_key,
  :filter_condition)
  SENSITIVE = []
  include Aws::Structure
end