interface DataPrepSimpleAggregationFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_DataPrepSimpleAggregationFunctionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » 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/cfn-property-mixins';
const dataPrepSimpleAggregationFunctionProperty: quicksight.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty = {
functionType: 'functionType',
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
(optional)
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