interface DataPrepSimpleAggregationFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DataPrepSimpleAggregationFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DataPrepSimpleAggregationFunctionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DataPrepSimpleAggregationFunctionProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DataPrepSimpleAggregationFunctionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DataPrepSimpleAggregationFunctionProperty |
A simple aggregation function that performs standard statistical operations on a column.
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 dataPrepSimpleAggregationFunctionProperty: quicksight.CfnDataSet.DataPrepSimpleAggregationFunctionProperty = {
functionType: 'functionType',
// the properties below are optional
inputColumnName: 'inputColumnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | The type of aggregation function to perform, such as COUNT , SUM , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION . |
| input | string | The name of the column on which to perform the aggregation function. |
functionType
Type:
string
The type of aggregation function to perform, such as COUNT , SUM , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION .
inputColumnName?
Type:
string
(optional)
The name of the column on which to perform the aggregation function.

.NET
Go
Java
Python
TypeScript