aws-cdk-lib.aws_securityhub.CfnAutomationRule.NumberFilterProperty

interface NumberFilterProperty

LanguageType name
.NETAmazon.CDK.AWS.SecurityHub.CfnAutomationRule.NumberFilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnAutomationRule_NumberFilterProperty
Javasoftware.amazon.awscdk.services.securityhub.CfnAutomationRule.NumberFilterProperty
Pythonaws_cdk.aws_securityhub.CfnAutomationRule.NumberFilterProperty
TypeScript 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

NameTypeDescription
eq?numberThe equal-to condition to be applied to a single field when querying for findings.
gte?numberThe greater-than-equal condition to be applied to a single field when querying for findings.
lte?numberThe 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.