Interface CfnAutomationRuleV2.DateFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutomationRuleV2.DateFilterProperty.Jsii$Proxy
- Enclosing class:
CfnAutomationRuleV2
@Stability(Stable)
public static interface CfnAutomationRuleV2.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 forCfnAutomationRuleV2.DateFilterPropertystatic final classAn implementation forCfnAutomationRuleV2.DateFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDateRange
A date range for the date filter.Returns union: either
IResolvableorCfnAutomationRuleV2.DateRangeProperty- 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 CSPM , 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 CSPM , see Timestamps .
- See Also:
-
builder
-