Class: Aws::SecurityHub::Types::SeverityUpdate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb

Overview

Updates to the severity information for a finding.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#labelString

The severity value of the finding. The allowed values are the following.

  • INFORMATIONAL - No issue was found.

  • LOW - The issue does not require action on its own.

  • MEDIUM - The issue must be addressed but not urgently.

  • HIGH - The issue must be addressed as a priority.

  • CRITICAL - The issue must be remediated immediately to avoid it escalating.

Returns:

  • (String)


29664
29665
29666
29667
29668
29669
29670
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29664

class SeverityUpdate < Struct.new(
  :normalized,
  :product,
  :label)
  SENSITIVE = []
  include Aws::Structure
end

#normalizedInteger

The normalized severity for the finding. This attribute is to be deprecated in favor of Label.

If you provide Normalized and do not provide Label, Label is set automatically as follows.

  • 0 - INFORMATIONAL

  • 1–39 - LOW

  • 40–69 - MEDIUM

  • 70–89 - HIGH

  • 90–100 - CRITICAL

Returns:

  • (Integer)


29664
29665
29666
29667
29668
29669
29670
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29664

class SeverityUpdate < Struct.new(
  :normalized,
  :product,
  :label)
  SENSITIVE = []
  include Aws::Structure
end

#productFloat

The native severity as defined by the Amazon Web Services service or integrated partner product that generated the finding.

Returns:

  • (Float)


29664
29665
29666
29667
29668
29669
29670
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29664

class SeverityUpdate < Struct.new(
  :normalized,
  :product,
  :label)
  SENSITIVE = []
  include Aws::Structure
end