interface AggregationSortConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.AggregationSortConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.AggregationSortConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.AggregationSortConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » AggregationSortConfigurationProperty |
The configuration options to sort aggregated values.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const aggregationSortConfigurationProperty: quicksight.CfnTemplate.AggregationSortConfigurationProperty = {
aggregationFunction: {
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
sortDirection: 'sortDirection',
};
Properties
Name | Type | Description |
---|---|---|
aggregation | IResolvable | Aggregation | The function that aggregates the values in Column . |
column | IResolvable | Column | The column that determines the sort order of aggregated values. |
sort | string | The sort direction of values. |
aggregationFunction
Type:
IResolvable
|
Aggregation
The function that aggregates the values in Column
.
column
Type:
IResolvable
|
Column
The column that determines the sort order of aggregated values.
sortDirection
Type:
string
The sort direction of values.
ASC
: Sort in ascending order.DESC
: Sort in descending order.