interface DataSetNumericRangeFilterConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.DataSetNumericRangeFilterConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_DataSetNumericRangeFilterConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.DataSetNumericRangeFilterConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.DataSetNumericRangeFilterConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » 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/cfn-property-mixins';
const dataSetNumericRangeFilterConditionProperty: quicksight.CfnDataSetPropsMixin.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