Interface CfnFilter.DateFilterProperty

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

@Stability(Stable) public static interface CfnFilter.DateFilterProperty extends software.amazon.jsii.JsiiSerializable
Contains details on the time range used to filter 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.inspectorv2.*;
 DateFilterProperty dateFilterProperty = DateFilterProperty.builder()
         .endInclusive(123)
         .startInclusive(123)
         .build();