Show / Hide Table of Contents

Class CfnDashboard.AggregationFunctionProperty

An aggregation function aggregates values from a dimension or measure.

Inheritance
System.Object
CfnDashboard.AggregationFunctionProperty
Implements
CfnDashboard.IAggregationFunctionProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class AggregationFunctionProperty : Object, CfnDashboard.IAggregationFunctionProperty
Syntax (vb)
Public Class AggregationFunctionProperty
    Inherits Object
    Implements CfnDashboard.IAggregationFunctionProperty
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-aggregationfunction.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 aggregationFunctionProperty = new AggregationFunctionProperty {
    CategoricalAggregationFunction = "categoricalAggregationFunction",
    DateAggregationFunction = "dateAggregationFunction",
    NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
        PercentileAggregation = new PercentileAggregationProperty {
            PercentileValue = 123
        },
        SimpleNumericalAggregation = "simpleNumericalAggregation"
    }
};

Synopsis

Constructors

AggregationFunctionProperty()

Properties

CategoricalAggregationFunction

Aggregation for categorical values.

DateAggregationFunction

Aggregation for date values.

NumericalAggregationFunction

Aggregation for numerical values.

Constructors

AggregationFunctionProperty()

public AggregationFunctionProperty()

Properties

CategoricalAggregationFunction

Aggregation for categorical values.

public string CategoricalAggregationFunction { get; set; }
Property Value

System.String

Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-aggregationfunction.html#cfn-quicksight-dashboard-aggregationfunction-categoricalaggregationfunction

    DateAggregationFunction

    Aggregation for date values.

    public string DateAggregationFunction { get; set; }
    Property Value

    System.String

    Remarks

      Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-aggregationfunction.html#cfn-quicksight-dashboard-aggregationfunction-dateaggregationfunction

      NumericalAggregationFunction

      Aggregation for numerical values.

      public object NumericalAggregationFunction { get; set; }
      Property Value

      System.Object

      Remarks

      Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-aggregationfunction.html#cfn-quicksight-dashboard-aggregationfunction-numericalaggregationfunction

      Implements

      CfnDashboard.IAggregationFunctionProperty
      Back to top Generated by DocFX