Interface CfnDataSetPropsMixin.IDataPrepSimpleAggregationFunctionProperty
A simple aggregation function that performs standard statistical operations on a column.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDataSetPropsMixin.IDataPrepSimpleAggregationFunctionProperty
Syntax (vb)
Public Interface CfnDataSetPropsMixin.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.CfnPropertyMixins.AWS.QuickSight;
var dataPrepSimpleAggregationFunctionProperty = new DataPrepSimpleAggregationFunctionProperty {
FunctionType = "functionType",
InputColumnName = "inputColumnName"
};
Synopsis
Properties
| FunctionType | The type of aggregation function to perform, such as |
| InputColumnName | The name of the column on which to perform the aggregation function. |
Properties
FunctionType
The type of aggregation function to perform, such as COUNT , SUM , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION .
string? FunctionType { get; }
Property Value
Remarks
InputColumnName
The name of the column on which to perform the aggregation function.
string? InputColumnName { get; }