interface FilterOperationSelectedFieldsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.FilterOperationSelectedFieldsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_FilterOperationSelectedFieldsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.FilterOperationSelectedFieldsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.FilterOperationSelectedFieldsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » FilterOperationSelectedFieldsConfigurationProperty |
The configuration of selected fields in the CustomActionFilterOperation .
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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const filterOperationSelectedFieldsConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.FilterOperationSelectedFieldsConfigurationProperty = {
selectedColumns: [{
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
}],
selectedFieldOptions: 'selectedFieldOptions',
selectedFields: ['selectedFields'],
};
Properties
| Name | Type | Description |
|---|---|---|
| selected | IResolvable | (IResolvable | Column)[] | The selected columns of a dataset. |
| selected | string | A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation . |
| selected | string[] | Chooses the fields that are filtered in CustomActionFilterOperation . |
selectedColumns?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
The selected columns of a dataset.
selectedFieldOptions?
Type:
string
(optional)
A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation .
Valid values are defined as follows:
ALL_FIELDS: Applies the filter operation to all fields.
selectedFields?
Type:
string[]
(optional)
Chooses the fields that are filtered in CustomActionFilterOperation .

.NET
Go
Java
Python
TypeScript