interface AutomationRulesActionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SecurityHub.CfnAutomationRule.AutomationRulesActionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_AutomationRulesActionProperty |
![]() | software.amazon.awscdk.services.securityhub.CfnAutomationRule.AutomationRulesActionProperty |
![]() | aws_cdk.aws_securityhub.CfnAutomationRule.AutomationRulesActionProperty |
![]() | aws-cdk-lib » aws_securityhub » CfnAutomationRule » AutomationRulesActionProperty |
One or more actions that AWS 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';
declare const id: any;
declare const updatedBy: any;
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.