interface CascadingControlSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.CascadingControlSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_CascadingControlSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.CascadingControlSourceProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.CascadingControlSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » CascadingControlSourceProperty |
The source controls that are used in a CascadingControlConfiguration .
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 cascadingControlSourceProperty: quicksight_mixins.CfnDashboardPropsMixin.CascadingControlSourceProperty = {
columnToMatch: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
sourceSheetControlId: 'sourceSheetControlId',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | Column | The column identifier that determines which column to look up for the source sheet control. |
| source | string | The source sheet control ID of a CascadingControlSource . |
columnToMatch?
Type:
IResolvable | Column
(optional)
The column identifier that determines which column to look up for the source sheet control.
sourceSheetControlId?
Type:
string
(optional)
The source sheet control ID of a CascadingControlSource .

.NET
Go
Java
Python
TypeScript