interface PercentileAggregationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PercentileAggregationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PercentileAggregationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PercentileAggregationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PercentileAggregationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const percentileAggregationProperty: quicksight_mixins.CfnAnalysisPropsMixin.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