Interface CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property.Jsii$Proxy
- Enclosing class:
CfnAutomationRuleV2PropsMixin
@Stability(Stable)
public static interface CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.securityhub.*;
AutomationRulesActionV2Property automationRulesActionV2Property = AutomationRulesActionV2Property.builder()
.externalIntegrationConfiguration(ExternalIntegrationConfigurationProperty.builder()
.connectorArn("connectorArn")
.build())
.findingFieldsUpdate(AutomationRulesFindingFieldsUpdateV2Property.builder()
.comment("comment")
.severityId(123)
.statusId(123)
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe settings for integrating automation rule actions with external systems or service.default ObjectSpecifies that the automation rule action is an update to a finding field.default StringgetType()Specifies the type of action that Security Hub CSPM takes when a finding matches the defined criteria of a rule.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExternalIntegrationConfiguration
The settings for integrating automation rule actions with external systems or service.Returns union: either
IResolvableorCfnAutomationRuleV2PropsMixin.ExternalIntegrationConfigurationProperty- See Also:
-
getFindingFieldsUpdate
Specifies that the automation rule action is an update to a finding field.Returns union: either
IResolvableorCfnAutomationRuleV2PropsMixin.AutomationRulesFindingFieldsUpdateV2Property- See Also:
-
getType
Specifies the type of action that Security Hub CSPM takes when a finding matches the defined criteria of a rule.- See Also:
-
builder
@Stability(Stable) static CfnAutomationRuleV2PropsMixin.AutomationRulesActionV2Property.Builder builder()
-