Show / Hide Table of Contents

Class CfnDataSet.DataPrepSimpleAggregationFunctionProperty

A simple aggregation function that performs standard statistical operations on a column.

Inheritance
object
CfnDataSet.DataPrepSimpleAggregationFunctionProperty
Implements
CfnDataSet.IDataPrepSimpleAggregationFunctionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-dataprepsimpleaggregationfunction.html

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 COUNT , SUM , AVERAGE , MIN , MAX , MEDIAN , VARIANCE , or STANDARD_DEVIATION .

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-dataprepsimpleaggregationfunction.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-dataprepsimpleaggregationfunction.html#cfn-quicksight-dataset-dataprepsimpleaggregationfunction-functiontype

InputColumnName

The name of the column on which to perform the aggregation function.

public string? InputColumnName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-dataprepsimpleaggregationfunction.html#cfn-quicksight-dataset-dataprepsimpleaggregationfunction-inputcolumnname

Implements

CfnDataSet.IDataPrepSimpleAggregationFunctionProperty
Back to top Generated by DocFX