Class CfnDataSet.DataPrepSimpleAggregationFunctionProperty
A simple aggregation function that performs standard statistical operations on a column.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.DataPrepSimpleAggregationFunctionProperty : CfnDataSet.IDataPrepSimpleAggregationFunctionProperty
Syntax (vb)
Public Class CfnDataSet.DataPrepSimpleAggregationFunctionProperty Implements CfnDataSet.IDataPrepSimpleAggregationFunctionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var dataPrepSimpleAggregationFunctionProperty = new DataPrepSimpleAggregationFunctionProperty {
FunctionType = "functionType",
// the properties below are optional
InputColumnName = "inputColumnName"
};
Synopsis
Constructors
| DataPrepSimpleAggregationFunctionProperty() | A simple aggregation function that performs standard statistical operations on a column. |
Properties
| FunctionType | The type of aggregation function to perform, such as |
| InputColumnName | The name of the column on which to perform the aggregation function. |
Constructors
DataPrepSimpleAggregationFunctionProperty()
A simple aggregation function that performs standard statistical operations on a column.
public DataPrepSimpleAggregationFunctionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var dataPrepSimpleAggregationFunctionProperty = new DataPrepSimpleAggregationFunctionProperty {
FunctionType = "functionType",
// the properties below are optional
InputColumnName = "inputColumnName"
};
Properties
FunctionType
The type of aggregation function to perform, such as COUNT , SUM , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION .
public string FunctionType { get; set; }
Property Value
Remarks
InputColumnName
The name of the column on which to perform the aggregation function.
public string? InputColumnName { get; set; }