aws-cdk-lib.aws_securityhub.CfnAutomationRule.SeverityUpdateProperty

interface SeverityUpdateProperty

LanguageType name
.NETAmazon.CDK.AWS.SecurityHub.CfnAutomationRule.SeverityUpdateProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_SeverityUpdateProperty
Javasoftware.amazon.awscdk.services.securityhub.CfnAutomationRule.SeverityUpdateProperty
Pythonaws_cdk.aws_securityhub.CfnAutomationRule.SeverityUpdateProperty
TypeScript aws-cdk-lib » aws_securityhub » CfnAutomationRule » SeverityUpdateProperty

Updates to the severity information for a finding.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from 'aws-cdk-lib';
const severityUpdateProperty: securityhub.CfnAutomationRule.SeverityUpdateProperty = {
  label: 'label',
  normalized: 123,
  product: 123,
};

Properties

NameTypeDescription
label?stringThe severity value of the finding. The allowed values are the following.
normalized?numberThe normalized severity for the finding. This attribute is to be deprecated in favor of Label .
product?numberThe native severity as defined by the AWS service or integrated partner product that generated the finding.

label?

Type: string (optional)

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.

normalized?

Type: number (optional)

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

product?

Type: number (optional)

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