interface CascadingControlConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CascadingControlConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_CascadingControlConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CascadingControlConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.CascadingControlConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » CascadingControlConfigurationProperty | 
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.
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 cascadingControlConfigurationProperty: quicksight.CfnDashboard.CascadingControlConfigurationProperty = {
  sourceControls: [{
    columnToMatch: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    sourceSheetControlId: 'sourceSheetControlId',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| source | IResolvable | (IResolvable | Cascading)[] | A list of source controls that determine the values that are used in the current control. | 
sourceControls?
Type:
IResolvable | (IResolvable | Cascading)[]
(optional)
A list of source controls that determine the values that are used in the current control.

 .NET
 Go
 Java
 Python
 TypeScript