interface AutomationRulesActionV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnAutomationRuleV2PropsMixin_AutomationRulesActionV2Property |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnAutomationRuleV2PropsMixin » AutomationRulesActionV2Property |
Allows you to configure automated responses.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const automationRulesActionV2Property: securityhub_mixins.CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property = {
externalIntegrationConfiguration: {
connectorArn: 'connectorArn',
},
findingFieldsUpdate: {
comment: 'comment',
severityId: 123,
statusId: 123,
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| external | IResolvable | External | The settings for integrating automation rule actions with external systems or service. |
| 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 CSPM takes when a finding matches the defined criteria of a rule. |
externalIntegrationConfiguration?
Type:
IResolvable | External
(optional)
The settings for integrating automation rule actions with external systems or service.
findingFieldsUpdate?
Type:
IResolvable | Automation
(optional)
Specifies that the automation rule action is an update to a finding field.
type?
Type:
string
(optional)
Specifies the type of action that Security Hub CSPM takes when a finding matches the defined criteria of a rule.

.NET
Go
Java
Python
TypeScript