interface DateFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnFilterPropsMixin.DateFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnFilterPropsMixin_DateFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnFilterPropsMixin.DateFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnFilterPropsMixin.DateFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » 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 { aws_inspectorv2 as inspectorv2 } from '@aws-cdk/cfn-property-mixins';
const dateFilterProperty: inspectorv2.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