interface SameSheetTargetVisualConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SameSheetTargetVisualConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SameSheetTargetVisualConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SameSheetTargetVisualConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SameSheetTargetVisualConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » SameSheetTargetVisualConfigurationProperty |
The configuration of the same-sheet 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const sameSheetTargetVisualConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.SameSheetTargetVisualConfigurationProperty = {
targetVisualOptions: 'targetVisualOptions',
targetVisuals: ['targetVisuals'],
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | The options that choose the target visual in the same sheet. |
| target | string[] | A list of the target visual IDs that are located in the same sheet of the analysis. |
targetVisualOptions?
Type:
string
(optional)
The options that choose the target visual in the same sheet.
Valid values are defined as follows:
ALL_VISUALS: Applies the filter operation to all visuals in the same sheet.
targetVisuals?
Type:
string[]
(optional)
A list of the target visual IDs that are located in the same sheet of the analysis.

.NET
Go
Java
Python
TypeScript