Class: Aws::SecurityHub::Types::Criteria

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure, Aws::Structure::Union
Defined in:
lib/aws-sdk-securityhub/types.rb

Overview

Note:

Criteria is a union - when making an API calls you must set exactly one of the members.

Note:

Criteria is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Criteria corresponding to the set member.

Defines the parameters and conditions used to evaluate and filter security findings.

Direct Known Subclasses

OcsfFindingCriteria, Unknown

Defined Under Namespace

Classes: OcsfFindingCriteria, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ocsf_finding_criteriaTypes::OcsfFindingFilters

The filtering conditions that align with OCSF standards.



23573
23574
23575
23576
23577
23578
23579
23580
23581
23582
# File 'lib/aws-sdk-securityhub/types.rb', line 23573

class Criteria < Struct.new(
  :ocsf_finding_criteria,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class OcsfFindingCriteria < Criteria; end
  class Unknown < Criteria; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



23573
23574
23575
# File 'lib/aws-sdk-securityhub/types.rb', line 23573

def unknown
  @unknown
end