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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAutomationRule.DateFilterPropertystatic final classAn implementation forCfnAutomationRule.DateFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDateRange
A date range for the date filter.- See Also:
-
getEnd
A timestamp that provides the end date for the date filter.A correctly formatted example is
2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated byT. For more information, see RFC 3339 section 5.6, Internet Date/Time Format .- See Also:
-
getStart
A timestamp that provides the start date for the date filter.A correctly formatted example is
2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated byT. For more information, see RFC 3339 section 5.6, Internet Date/Time Format .- See Also:
-
builder
-