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

.NET
Go
Java
Python
TypeScript