interface FilterCrossSheetControlProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FilterCrossSheetControlProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_FilterCrossSheetControlProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FilterCrossSheetControlProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.FilterCrossSheetControlProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const filterCrossSheetControlProperty: quicksight.CfnAnalysis.FilterCrossSheetControlProperty = {
  filterControlId: 'filterControlId',
  sourceFilterId: 'sourceFilterId',
  // the properties below are optional
  cascadingControlConfiguration: {
    sourceControls: [{
      columnToMatch: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      sourceSheetControlId: 'sourceSheetControlId',
    }],
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| filter | string | The ID of the FilterCrossSheetControl. | 
| source | string | The source filter ID of the FilterCrossSheetControl. | 
| 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. | 
filterControlId
Type:
string
The ID of the FilterCrossSheetControl .
sourceFilterId
Type:
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.
