interface DataPrepAggregationFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DataPrepAggregationFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DataPrepAggregationFunctionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DataPrepAggregationFunctionProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DataPrepAggregationFunctionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DataPrepAggregationFunctionProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dataPrepAggregationFunctionProperty: quicksight.CfnDataSet.DataPrepAggregationFunctionProperty = {
listAggregation: {
distinct: false,
separator: 'separator',
// the properties below are optional
inputColumnName: 'inputColumnName',
},
percentileAggregation: {
percentileValue: 123,
// the properties below are optional
inputColumnName: 'inputColumnName',
},
simpleAggregation: {
functionType: 'functionType',
// the properties below are optional
inputColumnName: 'inputColumnName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| list | IResolvable | Data | A list aggregation function that concatenates values from multiple rows into a single delimited string. |
| percentile | IResolvable | Data | |
| simple | IResolvable | Data | A simple aggregation function such as SUM , COUNT , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION . |
listAggregation?
Type:
IResolvable | Data
(optional)
A list aggregation function that concatenates values from multiple rows into a single delimited string.
percentileAggregation?
Type:
IResolvable | Data
(optional)
simpleAggregation?
Type:
IResolvable | Data
(optional)
A simple aggregation function such as SUM , COUNT , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION .

.NET
Go
Java
Python
TypeScript