interface FilterCrossSheetControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FilterCrossSheetControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FilterCrossSheetControlProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FilterCrossSheetControlProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FilterCrossSheetControlProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » FilterCrossSheetControlProperty |
A control from a filter that is scoped across more than one sheet.
This represents your filter control on a sheet
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 filterCrossSheetControlProperty: quicksight_mixins.CfnDashboardPropsMixin.FilterCrossSheetControlProperty = {
cascadingControlConfiguration: {
sourceControls: [{
columnToMatch: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
sourceSheetControlId: 'sourceSheetControlId',
}],
},
filterControlId: 'filterControlId',
sourceFilterId: 'sourceFilterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cascading | IResolvable | Cascading | The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls. |
| filter | string | The ID of the FilterCrossSheetControl . |
| source | string | The source filter ID of the FilterCrossSheetControl . |
cascadingControlConfiguration?
Type:
IResolvable | Cascading
(optional)
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
filterControlId?
Type:
string
(optional)
The ID of the FilterCrossSheetControl .
sourceFilterId?
Type:
string
(optional)
The source filter ID of the FilterCrossSheetControl .

.NET
Go
Java
Python
TypeScript