interface NumberFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnFilterPropsMixin.NumberFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnFilterPropsMixin_NumberFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnFilterPropsMixin.NumberFilterProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnFilterPropsMixin.NumberFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » 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 { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const numberFilterProperty: inspectorv2_mixins.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