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

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

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

Overview

Note:

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

{
  normalized: 1,
  product: 1.0,
  label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
}

Updates to the severity information for a finding.

Returned by:

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.

    Possible values:

    • INFORMATIONAL
    • LOW
    • MEDIUM
    • HIGH
    • CRITICAL

Returns:

  • (String)

    The severity value of the finding.

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

    The normalized severity for the finding.

#productFloat

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

Returns:

  • (Float)

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