Interface CfnAutomationRule.DateFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAutomationRule.DateFilterProperty.Jsii$Proxy
Enclosing class:
CfnAutomationRule

@Stability(Stable) public static interface CfnAutomationRule.DateFilterProperty extends software.amazon.jsii.JsiiSerializable
A date filter for querying findings.

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.*;
 DateFilterProperty dateFilterProperty = DateFilterProperty.builder()
         .dateRange(DateRangeProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .end("end")
         .start("start")
         .build();
 

See Also: