interface PercentileAggregationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.PercentileAggregationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_PercentileAggregationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.PercentileAggregationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.PercentileAggregationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » PercentileAggregationProperty |
An aggregation based on the percentile of values in a dimension or measure.
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/cfn-property-mixins';
const percentileAggregationProperty: quicksight.CfnTemplatePropsMixin.PercentileAggregationProperty = {
percentileValue: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| percentile | number | The percentile value. |
percentileValue?
Type:
number
(optional)
The percentile value.
This value can be any numeric constant 0–100. A percentile value of 50 computes the median value of the measure.

.NET
Go
Java
Python
TypeScript