interface NumericEqualityDrillDownFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.NumericEqualityDrillDownFilterProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.NumericEqualityDrillDownFilterProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.NumericEqualityDrillDownFilterProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » NumericEqualityDrillDownFilterProperty |
The category drill down filter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const numericEqualityDrillDownFilterProperty: quicksight.CfnAnalysis.NumericEqualityDrillDownFilterProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | Column | The column that the filter is applied to. |
| value | number | The value of the double input numeric drill down filter. |
column
Type:
IResolvable | Column
The column that the filter is applied to.
value
Type:
number
The value of the double input numeric drill down filter.

.NET
Java
Python
TypeScript