interface DateFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnFilterPropsMixin.DateFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnFilterPropsMixin_DateFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnFilterPropsMixin.DateFilterProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnFilterPropsMixin.DateFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnFilterPropsMixin » DateFilterProperty |
Contains details on the time range used to filter findings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const dateFilterProperty: inspectorv2_mixins.CfnFilterPropsMixin.DateFilterProperty = {
endInclusive: 123,
startInclusive: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| end | number | A timestamp representing the end of the time period filtered on. |
| start | number | A timestamp representing the start of the time period filtered on. |
endInclusive?
Type:
number
(optional)
A timestamp representing the end of the time period filtered on.
startInclusive?
Type:
number
(optional)
A timestamp representing the start of the time period filtered on.

.NET
Go
Java
Python
TypeScript