Interface CfnDataSetPropsMixin.ValueColumnConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.ValueColumnConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.ValueColumnConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for how to handle value columns in pivot operations, including aggregation settings.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
ValueColumnConfigurationProperty valueColumnConfigurationProperty = ValueColumnConfigurationProperty.builder()
.aggregationFunction(DataPrepAggregationFunctionProperty.builder()
.listAggregation(DataPrepListAggregationFunctionProperty.builder()
.distinct(false)
.inputColumnName("inputColumnName")
.separator("separator")
.build())
.percentileAggregation(DataPrepPercentileAggregationFunctionProperty.builder()
.inputColumnName("inputColumnName")
.percentileValue(123)
.build())
.simpleAggregation(DataPrepSimpleAggregationFunctionProperty.builder()
.functionType("functionType")
.inputColumnName("inputColumnName")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.ValueColumnConfigurationPropertystatic final classAn implementation forCfnDataSetPropsMixin.ValueColumnConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregationFunction
The aggregation function to apply when multiple values map to the same pivoted cell.Returns union: either
IResolvableorCfnDataSetPropsMixin.DataPrepAggregationFunctionProperty- See Also:
-
builder
-