interface FilterListConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FilterListConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_FilterListConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FilterListConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.FilterListConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»FilterListConfigurationProperty | 
A list of filter configurations.
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 filterListConfigurationProperty: quicksight.CfnAnalysis.FilterListConfigurationProperty = {
  matchOperator: 'matchOperator',
  // the properties below are optional
  categoryValues: ['categoryValues'],
  nullOption: 'nullOption',
  selectAllOptions: 'selectAllOptions',
};
Properties
| Name | Type | Description | 
|---|---|---|
| match | string | The match operator that is used to determine if a filter should be applied. | 
| category | string[] | The list of category values for the filter. | 
| null | string | This option determines how null values should be treated when filtering data. | 
| 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.
categoryValues?
Type:
string[]
(optional)
The list of category values for the filter.
nullOption?
Type:
string
(optional)
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.
selectAllOptions?
Type:
string
(optional)
Select all of the values. Null is not the assigned value of select all.
- FILTER_ALL_VALUES
