interface FilterOperationTargetVisualsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FilterOperationTargetVisualsConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FilterOperationTargetVisualsConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.FilterOperationTargetVisualsConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » FilterOperationTargetVisualsConfigurationProperty |
The configuration of target visuals that you want to be filtered.
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 * as quicksight from '@aws-cdk/aws-quicksight';
const filterOperationTargetVisualsConfigurationProperty: quicksight.CfnAnalysis.FilterOperationTargetVisualsConfigurationProperty = {
sameSheetTargetVisualConfiguration: {
targetVisualOptions: 'targetVisualOptions',
targetVisuals: ['targetVisuals'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| same | IResolvable | Same | The configuration of the same-sheet target visuals that you want to be filtered. |
sameSheetTargetVisualConfiguration?
Type:
IResolvable | Same
(optional)
The configuration of the same-sheet target visuals that you want to be filtered.

.NET
Java
Python
TypeScript