interface DateFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnAutomationRulePropsMixin.DateFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnAutomationRulePropsMixin_DateFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnAutomationRulePropsMixin.DateFilterProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnAutomationRulePropsMixin.DateFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnAutomationRulePropsMixin » 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 { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const dateFilterProperty: securityhub_mixins.CfnAutomationRulePropsMixin.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 CSPM , 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 CSPM , see Timestamps .

.NET
Go
Java
Python
TypeScript