Class DatascanDataQualitySpecRuleRangeExpectationArgs


  • public final class DatascanDataQualitySpecRuleRangeExpectationArgs
    extends com.pulumi.resources.ResourceArgs
    • Method Detail

      • maxValue

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> maxValue()
        Returns:
        The maximum column value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.
      • minValue

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> minValue()
        Returns:
        The minimum column value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.
      • strictMaxEnabled

        public java.util.Optional<com.pulumi.core.Output<java.lang.Boolean>> strictMaxEnabled()
        Returns:
        Whether each value needs to be strictly lesser than ('<') the maximum, or if equality is allowed. Only relevant if a maxValue has been defined. Default = false.
      • strictMinEnabled

        public java.util.Optional<com.pulumi.core.Output<java.lang.Boolean>> strictMinEnabled()
        Returns:
        Whether each value needs to be strictly greater than ('>') the minimum, or if equality is allowed. Only relevant if a minValue has been defined. Default = false.