interface TableSortConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.TableSortConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_TableSortConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.TableSortConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.TableSortConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » TableSortConfigurationProperty |
The sort configuration for a TableVisual .
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 tableSortConfigurationProperty: quicksight.CfnDashboard.TableSortConfigurationProperty = {
paginationConfiguration: {
pageNumber: 123,
pageSize: 123,
},
rowSort: [{
columnSort: {
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
// the properties below are optional
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
},
fieldSort: {
direction: 'direction',
fieldId: 'fieldId',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pagination | IResolvable | Pagination | The pagination configuration (page size, page number) for the table. |
| row | IResolvable | (IResolvable | Field)[] | The field sort options for rows in the table. |
paginationConfiguration?
Type:
IResolvable | Pagination
(optional)
The pagination configuration (page size, page number) for the table.
rowSort?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
The field sort options for rows in the table.

.NET
Go
Java
Python
TypeScript