interface ContributionAnalysisDefaultProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ContributionAnalysisDefaultProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ContributionAnalysisDefaultProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ContributionAnalysisDefaultProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ContributionAnalysisDefaultProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » ContributionAnalysisDefaultProperty |
The contribution analysis visual display for a line, pie, or bar chart.
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 contributionAnalysisDefaultProperty: quicksight_mixins.CfnDashboardPropsMixin.ContributionAnalysisDefaultProperty = {
contributorDimensions: [{
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
}],
measureFieldId: 'measureFieldId',
};
Properties
| Name | Type | Description |
|---|---|---|
| contributor | IResolvable | (IResolvable | Column)[] | The dimensions columns that are used in the contribution analysis, usually a list of ColumnIdentifiers . |
| measure | string | The measure field that is used in the contribution analysis. |
contributorDimensions?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
The dimensions columns that are used in the contribution analysis, usually a list of ColumnIdentifiers .
measureFieldId?
Type:
string
(optional)
The measure field that is used in the contribution analysis.

.NET
Go
Java
Python
TypeScript