Interface CfnDataSetPropsMixin.DataPrepAggregationFunctionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.DataPrepAggregationFunctionProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
DataPrepAggregationFunctionProperty dataPrepAggregationFunctionProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.DataPrepAggregationFunctionPropertystatic final classAn implementation forCfnDataSetPropsMixin.DataPrepAggregationFunctionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list aggregation function that concatenates values from multiple rows into a single delimited string.default ObjectReturns union: eitherIResolvableorCfnDataSetPropsMixin.DataPrepPercentileAggregationFunctionPropertydefault ObjectA simple aggregation function such asSUM,COUNT,AVERAGE,MIN,MAX,MEDIAN,VARIANCE, orSTANDARD_DEVIATION.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListAggregation
A list aggregation function that concatenates values from multiple rows into a single delimited string.Returns union: either
IResolvableorCfnDataSetPropsMixin.DataPrepListAggregationFunctionProperty- See Also:
-
getPercentileAggregation
Returns union: eitherIResolvableorCfnDataSetPropsMixin.DataPrepPercentileAggregationFunctionProperty- See Also:
-
getSimpleAggregation
A simple aggregation function such asSUM,COUNT,AVERAGE,MIN,MAX,MEDIAN,VARIANCE, orSTANDARD_DEVIATION.Returns union: either
IResolvableorCfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty- See Also:
-
builder
@Stability(Stable) static CfnDataSetPropsMixin.DataPrepAggregationFunctionProperty.Builder builder()
-