interface CustomActionFilterOperationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CustomActionFilterOperationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CustomActionFilterOperationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.CustomActionFilterOperationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»CustomActionFilterOperationProperty | 
The filter operation that filters data included in a visual or in an entire sheet.
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 customActionFilterOperationProperty: quicksight.CfnTemplate.CustomActionFilterOperationProperty = {
  selectedFieldsConfiguration: {
    selectedFieldOptions: 'selectedFieldOptions',
    selectedFields: ['selectedFields'],
  },
  targetVisualsConfiguration: {
    sameSheetTargetVisualConfiguration: {
      targetVisualOptions: 'targetVisualOptions',
      targetVisuals: ['targetVisuals'],
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| selected | IResolvable | Filter | The configuration that chooses the fields to be filtered. | 
| target | IResolvable | Filter | The configuration that chooses the target visuals to be filtered. | 
selectedFieldsConfiguration
Type:
IResolvable | Filter
The configuration that chooses the fields to be filtered.
targetVisualsConfiguration
Type:
IResolvable | Filter
The configuration that chooses the target visuals to be filtered.
