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