Interface CfnInsight.NumberFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInsight.NumberFilterProperty.Jsii$Proxy
- Enclosing class:
CfnInsight
@Stability(Stable)
public static interface CfnInsight.NumberFilterProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.securityhub.*;
NumberFilterProperty numberFilterProperty = NumberFilterProperty.builder()
.eq(123)
.gte(123)
.lte(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInsight.NumberFilterPropertystatic final classAn implementation forCfnInsight.NumberFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumbergetEq()The equal-to condition to be applied to a single field when querying for findings.default NumbergetGte()The greater-than-equal condition to be applied to a single field when querying for findings.default NumbergetLte()The less-than-equal condition to be applied to a single field when querying for findings.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEq
The equal-to condition to be applied to a single field when querying for findings.- See Also:
-
getGte
The greater-than-equal condition to be applied to a single field when querying for findings.- See Also:
-
getLte
The less-than-equal condition to be applied to a single field when querying for findings.- See Also:
-
builder
-