interface SheetVisualScopingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SheetVisualScopingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » SheetVisualScopingConfigurationProperty |
The filter that is applied to the options.
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 sheetVisualScopingConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty = {
scope: 'scope',
sheetId: 'sheetId',
visualIds: ['visualIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| scope? | string | The scope of the applied entities. Choose one of the following options:. |
| sheet | string | The selected sheet that the filter is applied to. |
| visual | string[] | The selected visuals that the filter is applied to. |
scope?
Type:
string
(optional)
The scope of the applied entities. Choose one of the following options:.
ALL_VISUALSSELECTED_VISUALS
sheetId?
Type:
string
(optional)
The selected sheet that the filter is applied to.
visualIds?
Type:
string[]
(optional)
The selected visuals that the filter is applied to.

.NET
Go
Java
Python
TypeScript