Interface CfnAutomationRule.AutomationRulesFindingFieldsUpdateProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAutomationRule.AutomationRulesFindingFieldsUpdateProperty.Jsii$Proxy
Enclosing class:
CfnAutomationRule

@Stability(Stable) public static interface CfnAutomationRule.AutomationRulesFindingFieldsUpdateProperty extends software.amazon.jsii.JsiiSerializable
Identifies the finding fields that the automation rule action updates when a finding matches the defined criteria.

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.*;
 Object id;
 Object updatedBy;
 AutomationRulesFindingFieldsUpdateProperty automationRulesFindingFieldsUpdateProperty = AutomationRulesFindingFieldsUpdateProperty.builder()
         .confidence(123)
         .criticality(123)
         .note(NoteUpdateProperty.builder()
                 .text("text")
                 .updatedBy(updatedBy)
                 .build())
         .relatedFindings(List.of(RelatedFindingProperty.builder()
                 .id(id)
                 .productArn("productArn")
                 .build()))
         .severity(SeverityUpdateProperty.builder()
                 .label("label")
                 .normalized(123)
                 .product(123)
                 .build())
         .types(List.of("types"))
         .userDefinedFields(Map.of(
                 "userDefinedFieldsKey", "userDefinedFields"))
         .verificationState("verificationState")
         .workflow(WorkflowUpdateProperty.builder()
                 .status("status")
                 .build())
         .build();
 

See Also: