Class CfnDataSet.DataSetNumericRangeFilterConditionProperty
A filter condition that filters numeric values within a specified range.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.DataSetNumericRangeFilterConditionProperty : CfnDataSet.IDataSetNumericRangeFilterConditionProperty
Syntax (vb)
Public Class CfnDataSet.DataSetNumericRangeFilterConditionProperty Implements 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
Constructors
| DataSetNumericRangeFilterConditionProperty() | A filter condition that filters numeric values within a specified range. |
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. |
Constructors
DataSetNumericRangeFilterConditionProperty()
A filter condition that filters numeric values within a specified range.
public DataSetNumericRangeFilterConditionProperty()
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
}
};
Properties
IncludeMaximum
Whether to include the maximum value in the filter range.
public object? IncludeMaximum { get; set; }
Property Value
Remarks
IncludeMinimum
Whether to include the minimum value in the filter range.
public object? IncludeMinimum { get; set; }
Property Value
Remarks
RangeMaximum
The maximum numeric value for the range filter.
public object? RangeMaximum { get; set; }
Property Value
Remarks
RangeMinimum
The minimum numeric value for the range filter.
public object? RangeMinimum { get; set; }