Interface CfnRuleset.ThresholdProperty

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

@Stability(Stable) public static interface CfnRuleset.ThresholdProperty extends software.amazon.jsii.JsiiSerializable
The threshold used with a non-aggregate check expression.

The non-aggregate check expression will be applied to each row in a specific column. Then the threshold will be used to determine whether the validation succeeds.

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.databrew.*;
 ThresholdProperty thresholdProperty = ThresholdProperty.builder()
         .value(123)
         // the properties below are optional
         .type("type")
         .unit("unit")
         .build();
 

See Also: