Interface CfnDataSet.ValueColumnConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.ValueColumnConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.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.services.quicksight.*;
 ValueColumnConfigurationProperty valueColumnConfigurationProperty = ValueColumnConfigurationProperty.builder()
         .aggregationFunction(DataPrepAggregationFunctionProperty.builder()
                 .listAggregation(DataPrepListAggregationFunctionProperty.builder()
                         .distinct(false)
                         .separator("separator")
                         // the properties below are optional
                         .inputColumnName("inputColumnName")
                         .build())
                 .percentileAggregation(DataPrepPercentileAggregationFunctionProperty.builder()
                         .percentileValue(123)
                         // the properties below are optional
                         .inputColumnName("inputColumnName")
                         .build())
                 .simpleAggregation(DataPrepSimpleAggregationFunctionProperty.builder()
                         .functionType("functionType")
                         // the properties below are optional
                         .inputColumnName("inputColumnName")
                         .build())
                 .build())
         .build();
 

See Also: