interface CascadingControlSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.CascadingControlSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_CascadingControlSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.CascadingControlSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.CascadingControlSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const cascadingControlSourceProperty: quicksight.CfnAnalysisPropsMixin.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