aws-cdk-lib.aws_quicksight.CfnTemplate.CustomFilterListConfigurationProperty

interface CustomFilterListConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.CustomFilterListConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_CustomFilterListConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.CustomFilterListConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.CustomFilterListConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const customFilterListConfigurationProperty: quicksight.CfnTemplate.CustomFilterListConfigurationProperty = {
  matchOperator: 'matchOperator',
  nullOption: 'nullOption',

  // the properties below are optional
  categoryValues: ['categoryValues'],
  selectAllOptions: 'selectAllOptions',
};

Properties

NameTypeDescription
matchOperatorstringThe match operator that is used to determine if a filter should be applied.
nullOptionstringThis option determines how null values should be treated when filtering data.
categoryValues?string[]The list of category values for the filter.
selectAllOptions?stringSelect 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