interface DateFilterProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnFilter.DateFilterProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnFilter.DateFilterProperty |
Python | aws_cdk.aws_inspectorv2.CfnFilter.DateFilterProperty |
TypeScript | @aws-cdk/aws-inspectorv2 » CfnFilter » 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 * as inspectorv2 from '@aws-cdk/aws-inspectorv2';
const dateFilterProperty: inspectorv2.CfnFilter.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.