Interface CfnAnalysis.ContributionAnalysisDefaultProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ContributionAnalysisDefaultProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ContributionAnalysisDefaultProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*; ContributionAnalysisDefaultProperty contributionAnalysisDefaultProperty = ContributionAnalysisDefaultProperty.builder() .contributorDimensions(List.of(ColumnIdentifierProperty.builder() .columnName("columnName") .dataSetIdentifier("dataSetIdentifier") .build())) .measureFieldId("measureFieldId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.ContributionAnalysisDefaultProperty
static final class
An implementation forCfnAnalysis.ContributionAnalysisDefaultProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The dimensions columns that are used in the contribution analysis, usually a list ofColumnIdentifiers
.The measure field that is used in the contribution analysis.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContributorDimensions
The dimensions columns that are used in the contribution analysis, usually a list ofColumnIdentifiers
.- See Also:
-
getMeasureFieldId
The measure field that is used in the contribution analysis.- See Also:
-
builder
-