interface DataSetStringListFilterConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DataSetStringListFilterConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DataSetStringListFilterConditionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DataSetStringListFilterConditionProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DataSetStringListFilterConditionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DataSetStringListFilterConditionProperty |
A filter condition that includes or excludes string values from a specified list.
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 dataSetStringListFilterConditionProperty: quicksight.CfnDataSet.DataSetStringListFilterConditionProperty = {
operator: 'operator',
// the properties below are optional
values: {
staticValues: ['staticValues'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| operator | string | The list operator to use, either INCLUDE to match values in the list or EXCLUDE to filter out values in the list. |
| values? | IResolvable | Data | The list of string values to include or exclude in the filter. |
operator
Type:
string
The list operator to use, either INCLUDE to match values in the list or EXCLUDE to filter out values in the list.
values?
Type:
IResolvable | Data
(optional)
The list of string values to include or exclude in the filter.

.NET
Go
Java
Python
TypeScript