Interface DataplexDatascanDataQualitySpecRulesStatisticRangeExpectation
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataplexDatascanDataQualitySpecRulesStatisticRangeExpectation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:20.607Z") @Stability(Stable) public interface DataplexDatascanDataQualitySpecRulesStatisticRangeExpectation extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDataplexDatascanDataQualitySpecRulesStatisticRangeExpectation.Builderstatic classDataplexDatascanDataQualitySpecRulesStatisticRangeExpectation.Jsii$ProxyAn implementation forDataplexDatascanDataQualitySpecRulesStatisticRangeExpectation
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static DataplexDatascanDataQualitySpecRulesStatisticRangeExpectation.Builderbuilder()default StringgetMaxValue()The maximum column statistic value allowed for a row to pass this validation.default StringgetMinValue()The minimum column statistic value allowed for a row to pass this validation.StringgetStatistic()column statistics.default ObjectgetStrictMaxEnabled()Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed.default ObjectgetStrictMinEnabled()Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed.
-
-
-
Method Detail
-
getStatistic
@Stability(Stable) @NotNull String getStatistic()
column statistics. Possible values: ["STATISTIC_UNDEFINED", "MEAN", "MIN", "MAX"].Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_datascan#statistic DataplexDatascan#statistic}
-
getMaxValue
@Stability(Stable) @Nullable default String getMaxValue()
The maximum column statistic value allowed for a row to pass this validation.At least one of minValue and maxValue need to be provided. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_datascan#max_value DataplexDatascan#max_value}
-
getMinValue
@Stability(Stable) @Nullable default String getMinValue()
The minimum column statistic value allowed for a row to pass this validation.At least one of minValue and maxValue need to be provided. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_datascan#min_value DataplexDatascan#min_value}
-
getStrictMaxEnabled
@Stability(Stable) @Nullable default Object getStrictMaxEnabled()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_datascan#strict_max_enabled DataplexDatascan#strict_max_enabled}
-
getStrictMinEnabled
@Stability(Stable) @Nullable default Object getStrictMinEnabled()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_datascan#strict_min_enabled DataplexDatascan#strict_min_enabled}
-
builder
@Stability(Stable) static DataplexDatascanDataQualitySpecRulesStatisticRangeExpectation.Builder builder()
-
-