Class CfnAutomationRuleV2.OcsfStringFilterProperty
Enables filtering of security findings based on string field values in OCSF.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SecurityHub
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAutomationRuleV2.OcsfStringFilterProperty : CfnAutomationRuleV2.IOcsfStringFilterProperty
Syntax (vb)
Public Class CfnAutomationRuleV2.OcsfStringFilterProperty Implements CfnAutomationRuleV2.IOcsfStringFilterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SecurityHub;
var ocsfStringFilterProperty = new OcsfStringFilterProperty {
FieldName = "fieldName",
Filter = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
}
};
Synopsis
Constructors
OcsfStringFilterProperty() | Enables filtering of security findings based on string field values in OCSF. |
Properties
FieldName | The name of the field. |
Filter | Enables filtering of security findings based on string field values in OCSF. |
Constructors
OcsfStringFilterProperty()
Enables filtering of security findings based on string field values in OCSF.
public OcsfStringFilterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SecurityHub;
var ocsfStringFilterProperty = new OcsfStringFilterProperty {
FieldName = "fieldName",
Filter = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
}
};
Properties
FieldName
The name of the field.
public string FieldName { get; set; }
Property Value
Remarks
Filter
Enables filtering of security findings based on string field values in OCSF.
public object Filter { get; set; }