DatascanDataQualitySpecRuleStatisticRangeExpectationArgs

data class DatascanDataQualitySpecRuleStatisticRangeExpectationArgs(val maxValue: Output<String>? = null, val minValue: Output<String>? = null, val statistic: Output<String>, val strictMaxEnabled: Output<Boolean>? = null, val strictMinEnabled: Output<Boolean>? = null) : ConvertibleToJava<DatascanDataQualitySpecRuleStatisticRangeExpectationArgs>

Constructors

constructor(maxValue: Output<String>? = null, minValue: Output<String>? = null, statistic: Output<String>, strictMaxEnabled: Output<Boolean>? = null, strictMinEnabled: Output<Boolean>? = null)

Properties

Link copied to clipboard
val maxValue: Output<String>? = null

The maximum column statistic value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.

Link copied to clipboard
val minValue: Output<String>? = null

The minimum column statistic value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.

Link copied to clipboard
val statistic: Output<String>

column statistics. Possible values are: STATISTIC_UNDEFINED, MEAN, MIN, MAX.

Link copied to clipboard
val strictMaxEnabled: Output<Boolean>? = null

Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed. Only relevant if a maxValue has been defined. Default = false.

Link copied to clipboard
val strictMinEnabled: Output<Boolean>? = null

Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed. Only relevant if a minValue has been defined. Default = false.

Functions

Link copied to clipboard
open override fun toJava(): DatascanDataQualitySpecRuleStatisticRangeExpectationArgs