interface OcsfNumberFilterProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.SecurityHub.CfnAutomationRuleV2.OcsfNumberFilterProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRuleV2_OcsfNumberFilterProperty | 
|  Java | software.amazon.awscdk.services.securityhub.CfnAutomationRuleV2.OcsfNumberFilterProperty | 
|  Python | aws_cdk.aws_securityhub.CfnAutomationRuleV2.OcsfNumberFilterProperty | 
|  TypeScript | aws-cdk-lib»aws_securityhub»CfnAutomationRuleV2»OcsfNumberFilterProperty | 
Enables filtering of security findings based on numerical 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-lib';
const ocsfNumberFilterProperty: securityhub.CfnAutomationRuleV2.OcsfNumberFilterProperty = {
  fieldName: 'fieldName',
  filter: {
    eq: 123,
    gte: 123,
    lte: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| field | string | The name of the field. | 
| filter | IResolvable | Number | Enables filtering of security findings based on numerical field values in OCSF. | 
fieldName
Type:
string
The name of the field.
filter
Type:
IResolvable | Number
Enables filtering of security findings based on numerical field values in OCSF.
