interface DrillDownFilterProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.DrillDownFilterProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DrillDownFilterProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.DrillDownFilterProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.DrillDownFilterProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnTemplate » DrillDownFilterProperty | 
The drill down filter for the column hierarchies.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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 drillDownFilterProperty: quicksight.CfnTemplate.DrillDownFilterProperty = {
  categoryFilter: {
    categoryValues: ['categoryValues'],
    column: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
  },
  numericEqualityFilter: {
    column: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    value: 123,
  },
  timeRangeFilter: {
    column: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    rangeMaximum: 'rangeMaximum',
    rangeMinimum: 'rangeMinimum',
    timeGranularity: 'timeGranularity',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| category | IResolvable | Category | The category type drill down filter. | 
| numeric | IResolvable | Numeric | The numeric equality type drill down filter. | 
| time | IResolvable | Time | The time range drill down filter. | 
categoryFilter?
Type:
IResolvable | Category
(optional)
The category type drill down filter.
This filter is used for string type columns.
numericEqualityFilter?
Type:
IResolvable | Numeric
(optional)
The numeric equality type drill down filter.
This filter is used for number type columns.
timeRangeFilter?
Type:
IResolvable | Time
(optional)
The time range drill down filter.
This filter is used for date time columns.

 .NET
 Go
 Java
 Python
 TypeScript