interface NumberFilterProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.InspectorV2.CfnFilter.NumberFilterProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnFilter_NumberFilterProperty | 
|  Java | software.amazon.awscdk.services.inspectorv2.CfnFilter.NumberFilterProperty | 
|  Python | aws_cdk.aws_inspectorv2.CfnFilter.NumberFilterProperty | 
|  TypeScript | aws-cdk-lib»aws_inspectorv2»CfnFilter»NumberFilterProperty | 
An object that describes the details of a number filter.
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-lib';
const numberFilterProperty: inspectorv2.CfnFilter.NumberFilterProperty = {
  lowerInclusive: 123,
  upperInclusive: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| lower | number | The lowest number to be included in the filter. | 
| upper | number | The highest number to be included in the filter. | 
lowerInclusive?
Type:
number
(optional)
The lowest number to be included in the filter.
upperInclusive?
Type:
number
(optional)
The highest number to be included in the filter.
