interface DataPrepSimpleAggregationFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_DataPrepSimpleAggregationFunctionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.DataPrepSimpleAggregationFunctionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dataPrepSimpleAggregationFunctionProperty: quicksight_mixins.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