Class CfnDashboard.NumericalAggregationFunctionProperty
Aggregation for numerical values.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.NumericalAggregationFunctionProperty : CfnDashboard.INumericalAggregationFunctionProperty
Syntax (vb)
Public Class CfnDashboard.NumericalAggregationFunctionProperty Implements CfnDashboard.INumericalAggregationFunctionProperty
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 numericalAggregationFunctionProperty = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
};
Synopsis
Constructors
| NumericalAggregationFunctionProperty() | Aggregation for numerical values. |
Properties
| PercentileAggregation | An aggregation based on the percentile of values in a dimension or measure. |
| SimpleNumericalAggregation | Built-in aggregation functions for numerical values. |
Constructors
NumericalAggregationFunctionProperty()
Aggregation for numerical values.
public NumericalAggregationFunctionProperty()
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 numericalAggregationFunctionProperty = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
};
Properties
PercentileAggregation
An aggregation based on the percentile of values in a dimension or measure.
public object? PercentileAggregation { get; set; }
Property Value
Remarks
SimpleNumericalAggregation
Built-in aggregation functions for numerical values.
public string? SimpleNumericalAggregation { get; set; }