Class CfnInsight.NumberFilterProperty
A number filter for querying findings.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SecurityHub
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInsight.NumberFilterProperty : CfnInsight.INumberFilterProperty
Syntax (vb)
Public Class CfnInsight.NumberFilterProperty Implements CfnInsight.INumberFilterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SecurityHub;
var numberFilterProperty = new NumberFilterProperty {
Eq = 123,
Gte = 123,
Lte = 123
};
Synopsis
Constructors
NumberFilterProperty() | A number filter for querying findings. |
Properties
Eq | The equal-to condition to be applied to a single field when querying for findings. |
Gte | The greater-than-equal condition to be applied to a single field when querying for findings. |
Lte | The less-than-equal condition to be applied to a single field when querying for findings. |
Constructors
NumberFilterProperty()
A number filter for querying findings.
public NumberFilterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SecurityHub;
var numberFilterProperty = new NumberFilterProperty {
Eq = 123,
Gte = 123,
Lte = 123
};
Properties
Eq
The equal-to condition to be applied to a single field when querying for findings.
public double? Eq { get; set; }
Property Value
Remarks
Gte
The greater-than-equal condition to be applied to a single field when querying for findings.
public double? Gte { get; set; }
Property Value
Remarks
Lte
The less-than-equal condition to be applied to a single field when querying for findings.
public double? Lte { get; set; }