interface FilterScopeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FilterScopeConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FilterScopeConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.FilterScopeConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » FilterScopeConfigurationProperty |
The scope configuration for a FilterGroup .
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 filterScopeConfigurationProperty: quicksight.CfnAnalysis.FilterScopeConfigurationProperty = {
selectedSheets: {
sheetVisualScopingConfigurations: [{
scope: 'scope',
sheetId: 'sheetId',
// the properties below are optional
visualIds: ['visualIds'],
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| selected | IResolvable | Selected | The configuration for applying a filter to specific sheets. |
selectedSheets?
Type:
IResolvable | Selected
(optional)
The configuration for applying a filter to specific sheets.

.NET
Java
Python
TypeScript