interface OcsfMapFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnAutomationRuleV2.OcsfMapFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRuleV2_OcsfMapFilterProperty |
Java | software.amazon.awscdk.services.securityhub.CfnAutomationRuleV2.OcsfMapFilterProperty |
Python | aws_cdk.aws_securityhub.CfnAutomationRuleV2.OcsfMapFilterProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnAutomationRuleV2 » OcsfMapFilterProperty |
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 { aws_securityhub as securityhub } from 'aws-cdk-lib';
const ocsfMapFilterProperty: securityhub.CfnAutomationRuleV2.OcsfMapFilterProperty = {
fieldName: 'fieldName',
filter: {
comparison: 'comparison',
key: 'key',
value: 'value',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The name of the field. |
| filter | IResolvable | Map | Enables filtering of security findings based on map field values in OCSF. |
fieldName
Type:
string
The name of the field.
filter
Type:
IResolvable | Map
Enables filtering of security findings based on map field values in OCSF.

.NET
Go
Java
Python
TypeScript