interface BoxPlotSortConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.BoxPlotSortConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.BoxPlotSortConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.BoxPlotSortConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » BoxPlotSortConfigurationProperty |
The sort configuration of a BoxPlotVisual
.
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 boxPlotSortConfigurationProperty: quicksight.CfnDashboard.BoxPlotSortConfigurationProperty = {
categorySort: [{
columnSort: {
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
// the properties below are optional
aggregationFunction: {
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
},
fieldSort: {
direction: 'direction',
fieldId: 'fieldId',
},
}],
paginationConfiguration: {
pageNumber: 123,
pageSize: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
category | IResolvable | IResolvable | Field [] | The sort configuration of a group by fields. |
pagination | IResolvable | Pagination | The pagination configuration of a table visual or box plot. |
categorySort?
Type:
IResolvable
|
IResolvable
|
Field
[]
(optional)
The sort configuration of a group by fields.
paginationConfiguration?
Type:
IResolvable
|
Pagination
(optional)
The pagination configuration of a table visual or box plot.