Interface CfnDataSet.DataPrepAggregationFunctionProperty

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

@Stability(Stable) public static interface CfnDataSet.DataPrepAggregationFunctionProperty extends software.amazon.jsii.JsiiSerializable
Defines the type of aggregation function to apply to data during data preparation, supporting simple and list aggregations.

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.*;
 DataPrepAggregationFunctionProperty dataPrepAggregationFunctionProperty = 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();
 

See Also: