Interface CfnTemplate.ContributionAnalysisDefaultProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ContributionAnalysisDefaultProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.ContributionAnalysisDefaultPropertystatic final classAn implementation forCfnTemplate.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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplate.ColumnIdentifierProperty>- See Also:
-
getMeasureFieldId
The measure field that is used in the contribution analysis.- See Also:
-
builder
-