aws-cdk-lib.aws_inspectorv2.CfnFilter.NumberFilterProperty

interface NumberFilterProperty

LanguageType name
.NETAmazon.CDK.AWS.InspectorV2.CfnFilter.NumberFilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnFilter_NumberFilterProperty
Javasoftware.amazon.awscdk.services.inspectorv2.CfnFilter.NumberFilterProperty
Pythonaws_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

NameTypeDescription
lowerInclusive?numberThe lowest number to be included in the filter.
upperInclusive?numberThe 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.