interface CascadingControlConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.CascadingControlConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_CascadingControlConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.CascadingControlConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.CascadingControlConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const cascadingControlConfigurationProperty: quicksight_mixins.CfnDashboardPropsMixin.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