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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFilter.NumberFilterProperty
static final class
An implementation forCfnFilter.NumberFilterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLowerInclusive
The lowest number to be included in the filter. -
getUpperInclusive
The highest number to be included in the filter. -
builder
-