Interface DataplexDatascanDataQualitySpecRulesRangeExpectation
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataplexDatascanDataQualitySpecRulesRangeExpectation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:20.606Z") @Stability(Stable) public interface DataplexDatascanDataQualitySpecRulesRangeExpectation extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDataplexDatascanDataQualitySpecRulesRangeExpectation.BuilderA builder forDataplexDatascanDataQualitySpecRulesRangeExpectationstatic classDataplexDatascanDataQualitySpecRulesRangeExpectation.Jsii$ProxyAn implementation forDataplexDatascanDataQualitySpecRulesRangeExpectation
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static DataplexDatascanDataQualitySpecRulesRangeExpectation.Builderbuilder()default StringgetMaxValue()The maximum column value allowed for a row to pass this validation.default StringgetMinValue()The minimum column value allowed for a row to pass this validation.default ObjectgetStrictMaxEnabled()Whether each value needs to be strictly lesser than ('<') the maximum, or if equality is allowed.default ObjectgetStrictMinEnabled()Whether each value needs to be strictly greater than ('>') the minimum, or if equality is allowed.
-
-
-
Method Detail
-
getMaxValue
@Stability(Stable) @Nullable default String getMaxValue()
The maximum column 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 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 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. 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 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. 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 DataplexDatascanDataQualitySpecRulesRangeExpectation.Builder builder()
-
-