interface SeverityUpdateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnAutomationRule.SeverityUpdateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_SeverityUpdateProperty |
Java | software.amazon.awscdk.services.securityhub.CfnAutomationRule.SeverityUpdateProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| label? | string | The severity value of the finding. The allowed values are the following. |
| normalized? | number | The normalized severity for the finding. This attribute is to be deprecated in favor of Label . |
| product? | number | The 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 don't 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.

.NET
Go
Java
Python
TypeScript