interface CustomFilterListConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CustomFilterListConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CustomFilterListConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.CustomFilterListConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»CustomFilterListConfigurationProperty | 
A list of custom filter values.
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 customFilterListConfigurationProperty: quicksight.CfnTemplate.CustomFilterListConfigurationProperty = {
  matchOperator: 'matchOperator',
  nullOption: 'nullOption',
  // the properties below are optional
  categoryValues: ['categoryValues'],
  selectAllOptions: 'selectAllOptions',
};
Properties
| Name | Type | Description | 
|---|---|---|
| match | string | The match operator that is used to determine if a filter should be applied. | 
| null | string | This option determines how null values should be treated when filtering data. | 
| category | string[] | The list of category values for the filter. | 
| select | string | Select all of the values. Null is not the assigned value of select all. | 
matchOperator
Type:
string
The match operator that is used to determine if a filter should be applied.
nullOption
Type:
string
This option determines how null values should be treated when filtering data.
- ALL_VALUES: Include null values in filtered results.
- NULLS_ONLY: Only include null values in filtered results.
- NON_NULLS_ONLY: Exclude null values from filtered results.
categoryValues?
Type:
string[]
(optional)
The list of category values for the filter.
selectAllOptions?
Type:
string
(optional)
Select all of the values. Null is not the assigned value of select all.
- FILTER_ALL_VALUES
