interface OcsfBooleanFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnAutomationRuleV2PropsMixin.OcsfBooleanFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnAutomationRuleV2PropsMixin_OcsfBooleanFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnAutomationRuleV2PropsMixin.OcsfBooleanFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnAutomationRuleV2PropsMixin.OcsfBooleanFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnAutomationRuleV2PropsMixin » OcsfBooleanFilterProperty |
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 { aws_securityhub as securityhub } from '@aws-cdk/cfn-property-mixins';
const ocsfBooleanFilterProperty: securityhub.CfnAutomationRuleV2PropsMixin.OcsfBooleanFilterProperty = {
fieldName: 'fieldName',
filter: {
value: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The name of the field. |
| filter? | IResolvable | Boolean | Enables filtering of security findings based on boolean field values in OCSF. |
fieldName?
Type:
string
(optional)
The name of the field.
filter?
Type:
IResolvable | Boolean
(optional)
Enables filtering of security findings based on boolean field values in OCSF.

.NET
Go
Java
Python
TypeScript