Interface CfnAutomationRuleV2.OcsfBooleanFilterProperty

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

@Stability(Stable) public static interface CfnAutomationRuleV2.OcsfBooleanFilterProperty extends software.amazon.jsii.JsiiSerializable
Enables filtering of security findings based on boolean 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.*;
 OcsfBooleanFilterProperty ocsfBooleanFilterProperty = OcsfBooleanFilterProperty.builder()
         .fieldName("fieldName")
         .filter(BooleanFilterProperty.builder()
                 .value(false)
                 .build())
         .build();
 

See Also: