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 class
A builder forCfnAutomationRule.DateFilterProperty
static final class
An 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.For more information about the validation and formatting of timestamp fields in AWS Security Hub , see Timestamps .
- See Also:
-
getStart
A timestamp that provides the start date for the date filter.For more information about the validation and formatting of timestamp fields in AWS Security Hub , see Timestamps .
- See Also:
-
builder
-