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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.DataPrepAggregationFunctionPropertystatic final classAn implementation forCfnDataSet.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: eitherIResolvableorCfnDataSet.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
IResolvableorCfnDataSet.DataPrepListAggregationFunctionProperty- See Also:
-
getPercentileAggregation
Returns union: eitherIResolvableorCfnDataSet.DataPrepPercentileAggregationFunctionProperty- See Also:
-
getSimpleAggregation
A simple aggregation function such asSUM,COUNT,AVERAGE,MIN,MAX,MEDIAN,VARIANCE, orSTANDARD_DEVIATION.Returns union: either
IResolvableorCfnDataSet.DataPrepSimpleAggregationFunctionProperty- See Also:
-
builder
-