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

.NET
Go
Java
Python
TypeScript