interface AutomationRulesActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnAutomationRule.AutomationRulesActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_AutomationRulesActionProperty |
Java | software.amazon.awscdk.services.securityhub.CfnAutomationRule.AutomationRulesActionProperty |
Python | aws_cdk.aws_securityhub.CfnAutomationRule.AutomationRulesActionProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnAutomationRule » AutomationRulesActionProperty |
One or more actions that Security Hub takes when a finding matches the defined criteria of a rule.
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 automationRulesActionProperty: securityhub.CfnAutomationRule.AutomationRulesActionProperty = {
findingFieldsUpdate: {
confidence: 123,
criticality: 123,
note: {
text: 'text',
updatedBy: 'updatedBy',
},
relatedFindings: [{
id: 'id',
productArn: 'productArn',
}],
severity: {
label: 'label',
normalized: 123,
product: 123,
},
types: ['types'],
userDefinedFields: {
userDefinedFieldsKey: 'userDefinedFields',
},
verificationState: 'verificationState',
workflow: {
status: 'status',
},
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| finding | IResolvable | Automation | Specifies that the automation rule action is an update to a finding field. |
| type | string | Specifies the type of action that Security Hub takes when a finding matches the defined criteria of a rule. |
findingFieldsUpdate
Type:
IResolvable | Automation
Specifies that the automation rule action is an update to a finding field.
type
Type:
string
Specifies the type of action that Security Hub takes when a finding matches the defined criteria of a rule.

.NET
Go
Java
Python
TypeScript