interface DateFilterProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.SecurityHub.CfnAutomationRule.DateFilterProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_DateFilterProperty | 
|  Java | software.amazon.awscdk.services.securityhub.CfnAutomationRule.DateFilterProperty | 
|  Python | aws_cdk.aws_securityhub.CfnAutomationRule.DateFilterProperty | 
|  TypeScript | aws-cdk-lib»aws_securityhub»CfnAutomationRule»DateFilterProperty | 
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 { aws_securityhub as securityhub } from 'aws-cdk-lib';
const dateFilterProperty: securityhub.CfnAutomationRule.DateFilterProperty = {
  dateRange: {
    unit: 'unit',
    value: 123,
  },
  end: 'end',
  start: 'start',
};
Properties
| Name | Type | Description | 
|---|---|---|
| date | IResolvable | Date | A date range for the date filter. | 
| end? | string | A timestamp that provides the end date for the date filter. | 
| start? | string | A timestamp that provides the start date for the date filter. | 
dateRange?
Type:
IResolvable | Date
(optional)
A date range for the date filter.
end?
Type:
string
(optional)
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 .
start?
Type:
string
(optional)
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 .
