interface NumberFilterProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SecurityHub.CfnAutomationRule.NumberFilterProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_NumberFilterProperty |
![]() | software.amazon.awscdk.services.securityhub.CfnAutomationRule.NumberFilterProperty |
![]() | aws_cdk.aws_securityhub.CfnAutomationRule.NumberFilterProperty |
![]() | aws-cdk-lib » aws_securityhub » CfnAutomationRule » 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-lib';
const numberFilterProperty: securityhub.CfnAutomationRule.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.