interface SheetVisualScopingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_SheetVisualScopingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.SheetVisualScopingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const sheetVisualScopingConfigurationProperty: quicksight.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