Show / Hide Table of Contents

Interface CfnDashboard.IAggregationFunctionProperty

An aggregation function aggregates values from a dimension or measure.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDashboard.IAggregationFunctionProperty
Syntax (vb)
Public Interface CfnDashboard.IAggregationFunctionProperty
Remarks

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

See: 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 {
                 AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                     SimpleAttributeAggregation = "simpleAttributeAggregation",
                     ValueForMultipleValues = "valueForMultipleValues"
                 },
                 CategoricalAggregationFunction = "categoricalAggregationFunction",
                 DateAggregationFunction = "dateAggregationFunction",
                 NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                     PercentileAggregation = new PercentileAggregationProperty {
                         PercentileValue = 123
                     },
                     SimpleNumericalAggregation = "simpleNumericalAggregation"
                 }
             };

Synopsis

Properties

AttributeAggregationFunction

Aggregation for attributes.

CategoricalAggregationFunction

Aggregation for categorical values.

DateAggregationFunction

Aggregation for date values.

NumericalAggregationFunction

Aggregation for numerical values.

Properties

AttributeAggregationFunction

Aggregation for attributes.

object? AttributeAggregationFunction { get; }
Property Value

object

Remarks

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

CategoricalAggregationFunction

Aggregation for categorical values.

string? CategoricalAggregationFunction { get; }
Property Value

string

Remarks

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

    DateAggregationFunction

    Aggregation for date values.

    string? DateAggregationFunction { get; }
    Property Value

    string

    Remarks

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

      NumericalAggregationFunction

      Aggregation for numerical values.

      object? NumericalAggregationFunction { get; }
      Property Value

      object

      Remarks

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

      Back to top Generated by DocFX