interface NumericalAggregationFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.NumericalAggregationFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_NumericalAggregationFunctionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.NumericalAggregationFunctionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.NumericalAggregationFunctionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » NumericalAggregationFunctionProperty |
Aggregation for numerical values.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const numericalAggregationFunctionProperty: quicksight_mixins.CfnAnalysisPropsMixin.NumericalAggregationFunctionProperty = {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
};
Properties
| Name | Type | Description |
|---|---|---|
| percentile | IResolvable | Percentile | An aggregation based on the percentile of values in a dimension or measure. |
| simple | string | Built-in aggregation functions for numerical values. |
percentileAggregation?
Type:
IResolvable | Percentile
(optional)
An aggregation based on the percentile of values in a dimension or measure.
simpleNumericalAggregation?
Type:
string
(optional)
Built-in aggregation functions for numerical values.
SUM: The sum of a dimension or measure.AVERAGE: The average of a dimension or measure.MIN: The minimum value of a dimension or measure.MAX: The maximum value of a dimension or measure.COUNT: The count of a dimension or measure.DISTINCT_COUNT: The count of distinct values in a dimension or measure.VAR: The variance of a dimension or measure.VARP: The partitioned variance of a dimension or measure.STDEV: The standard deviation of a dimension or measure.STDEVP: The partitioned standard deviation of a dimension or measure.MEDIAN: The median value of a dimension or measure.

.NET
Go
Java
Python
TypeScript