Interface CfnAutomationRuleV2.OcsfMapFilterProperty

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

@Stability(Stable) public static interface CfnAutomationRuleV2.OcsfMapFilterProperty extends software.amazon.jsii.JsiiSerializable
Enables filtering of security findings based on map field values in OCSF.

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.*;
 OcsfMapFilterProperty ocsfMapFilterProperty = OcsfMapFilterProperty.builder()
         .fieldName("fieldName")
         .filter(MapFilterProperty.builder()
                 .comparison("comparison")
                 .key("key")
                 .value("value")
                 .build())
         .build();
 

See Also: