interface NumberFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnInsightPropsMixin.NumberFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnInsightPropsMixin_NumberFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnInsightPropsMixin.NumberFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnInsightPropsMixin.NumberFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnInsightPropsMixin » NumberFilterProperty |
A number filter for querying findings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from '@aws-cdk/cfn-property-mixins';
const numberFilterProperty: securityhub.CfnInsightPropsMixin.NumberFilterProperty = {
eq: 123,
gte: 123,
lte: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| eq? | number | The equal-to condition to be applied to a single field when querying for findings. |
| gte? | number | The greater-than-equal condition to be applied to a single field when querying for findings. |
| lte? | number | The less-than-equal condition to be applied to a single field when querying for findings. |
eq?
Type:
number
(optional)
The equal-to condition to be applied to a single field when querying for findings.
gte?
Type:
number
(optional)
The greater-than-equal condition to be applied to a single field when querying for findings.
lte?
Type:
number
(optional)
The less-than-equal condition to be applied to a single field when querying for findings.

.NET
Go
Java
Python
TypeScript