Interface CfnDataSet.IDataSetNumericRangeFilterConditionProperty
A filter condition that filters numeric values within a specified range.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSet.IDataSetNumericRangeFilterConditionProperty
Syntax (vb)
Public Interface CfnDataSet.IDataSetNumericRangeFilterConditionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var dataSetNumericRangeFilterConditionProperty = new DataSetNumericRangeFilterConditionProperty {
IncludeMaximum = false,
IncludeMinimum = false,
RangeMaximum = new DataSetNumericFilterValueProperty {
StaticValue = 123
},
RangeMinimum = new DataSetNumericFilterValueProperty {
StaticValue = 123
}
};
Synopsis
Properties
| IncludeMaximum | Whether to include the maximum value in the filter range. |
| IncludeMinimum | Whether to include the minimum value in the filter range. |
| RangeMaximum | The maximum numeric value for the range filter. |
| RangeMinimum | The minimum numeric value for the range filter. |
Properties
IncludeMaximum
Whether to include the maximum value in the filter range.
object? IncludeMaximum { get; }
Property Value
Remarks
IncludeMinimum
Whether to include the minimum value in the filter range.
object? IncludeMinimum { get; }
Property Value
Remarks
RangeMaximum
The maximum numeric value for the range filter.
object? RangeMaximum { get; }
Property Value
Remarks
RangeMinimum
The minimum numeric value for the range filter.
object? RangeMinimum { get; }