Interface CfnDataSet.DataSetNumericRangeFilterConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.DataSetNumericRangeFilterConditionProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.DataSetNumericRangeFilterConditionProperty
extends software.amazon.jsii.JsiiSerializable
A filter condition that filters numeric values within a specified range.
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.quicksight.*;
DataSetNumericRangeFilterConditionProperty dataSetNumericRangeFilterConditionProperty = DataSetNumericRangeFilterConditionProperty.builder()
.includeMaximum(false)
.includeMinimum(false)
.rangeMaximum(DataSetNumericFilterValueProperty.builder()
.staticValue(123)
.build())
.rangeMinimum(DataSetNumericFilterValueProperty.builder()
.staticValue(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.DataSetNumericRangeFilterConditionPropertystatic final classAn implementation forCfnDataSet.DataSetNumericRangeFilterConditionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether to include the maximum value in the filter range.default ObjectWhether to include the minimum value in the filter range.default ObjectThe maximum numeric value for the range filter.default ObjectThe minimum numeric value for the range filter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIncludeMaximum
Whether to include the maximum value in the filter range.Returns union: either
BooleanorIResolvable- See Also:
-
getIncludeMinimum
Whether to include the minimum value in the filter range.Returns union: either
BooleanorIResolvable- See Also:
-
getRangeMaximum
The maximum numeric value for the range filter.Returns union: either
IResolvableorCfnDataSet.DataSetNumericFilterValueProperty- See Also:
-
getRangeMinimum
The minimum numeric value for the range filter.Returns union: either
IResolvableorCfnDataSet.DataSetNumericFilterValueProperty- See Also:
-
builder
-