aws-cdk-lib.aws_quicksight.CfnAnalysis.NumericalAggregationFunctionProperty

interface NumericalAggregationFunctionProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnAnalysis.NumericalAggregationFunctionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_NumericalAggregationFunctionProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnAnalysis.NumericalAggregationFunctionProperty
Pythonaws_cdk.aws_quicksight.CfnAnalysis.NumericalAggregationFunctionProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnAnalysis » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const numericalAggregationFunctionProperty: quicksight.CfnAnalysis.NumericalAggregationFunctionProperty = {
  percentileAggregation: {
    percentileValue: 123,
  },
  simpleNumericalAggregation: 'simpleNumericalAggregation',
};

Properties

NameTypeDescription
percentileAggregation?IResolvable | PercentileAggregationPropertyAn aggregation based on the percentile of values in a dimension or measure.
simpleNumericalAggregation?stringBuilt-in aggregation functions for numerical values.

percentileAggregation?

Type: IResolvable | PercentileAggregationProperty (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.