Interface CfnAutomationRuleV2.OcsfDateFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutomationRuleV2.OcsfDateFilterProperty.Jsii$Proxy
- Enclosing class:
CfnAutomationRuleV2
@Stability(Stable)
public static interface CfnAutomationRuleV2.OcsfDateFilterProperty
extends software.amazon.jsii.JsiiSerializable
Enables filtering of security findings based on date and timestamp fields in OCSF.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.securityhub.*;
OcsfDateFilterProperty ocsfDateFilterProperty = OcsfDateFilterProperty.builder()
.fieldName("fieldName")
.filter(DateFilterProperty.builder()
.dateRange(DateRangeProperty.builder()
.unit("unit")
.value(123)
.build())
.end("end")
.start("start")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAutomationRuleV2.OcsfDateFilterPropertystatic final classAn implementation forCfnAutomationRuleV2.OcsfDateFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the field.Enables filtering of security findings based on date and timestamp fields in OCSF.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldName
The name of the field.- See Also:
-
getFilter
Enables filtering of security findings based on date and timestamp fields in OCSF.- See Also:
-
builder
-