Interface CfnFilter.NumberFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFilter.NumberFilterProperty.Jsii$Proxy
Enclosing class:
CfnFilter

@Stability(Stable) public static interface CfnFilter.NumberFilterProperty extends software.amazon.jsii.JsiiSerializable
An object that describes the details of a number filter.

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.inspectorv2.*;
 NumberFilterProperty numberFilterProperty = NumberFilterProperty.builder()
         .lowerInclusive(123)
         .upperInclusive(123)
         .build();