interface DataSetNumericRangeFilterConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DataSetNumericRangeFilterConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DataSetNumericRangeFilterConditionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DataSetNumericRangeFilterConditionProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DataSetNumericRangeFilterConditionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DataSetNumericRangeFilterConditionProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dataSetNumericRangeFilterConditionProperty: quicksight.CfnDataSet.DataSetNumericRangeFilterConditionProperty = {
includeMaximum: false,
includeMinimum: false,
rangeMaximum: {
staticValue: 123,
},
rangeMinimum: {
staticValue: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| include | boolean | IResolvable | Whether to include the maximum value in the filter range. |
| include | boolean | IResolvable | Whether to include the minimum value in the filter range. |
| range | IResolvable | Data | The maximum numeric value for the range filter. |
| range | IResolvable | Data | The minimum numeric value for the range filter. |
includeMaximum?
Type:
boolean | IResolvable
(optional)
Whether to include the maximum value in the filter range.
includeMinimum?
Type:
boolean | IResolvable
(optional)
Whether to include the minimum value in the filter range.
rangeMaximum?
Type:
IResolvable | Data
(optional)
The maximum numeric value for the range filter.
rangeMinimum?
Type:
IResolvable | Data
(optional)
The minimum numeric value for the range filter.

.NET
Go
Java
Python
TypeScript