interface NumberFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnAutomationRulePropsMixin.NumberFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnAutomationRulePropsMixin_NumberFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnAutomationRulePropsMixin.NumberFilterProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnAutomationRulePropsMixin.NumberFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnAutomationRulePropsMixin » 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 { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const numberFilterProperty: securityhub_mixins.CfnAutomationRulePropsMixin.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