interface DataPrepPercentileAggregationFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DataPrepPercentileAggregationFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DataPrepPercentileAggregationFunctionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DataPrepPercentileAggregationFunctionProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DataPrepPercentileAggregationFunctionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DataPrepPercentileAggregationFunctionProperty |
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 dataPrepPercentileAggregationFunctionProperty: quicksight.CfnDataSet.DataPrepPercentileAggregationFunctionProperty = {
percentileValue: 123,
// the properties below are optional
inputColumnName: 'inputColumnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| percentile | number | |
| input | string |
percentileValue
Type:
number
inputColumnName?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript