interface ColumnSortProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ColumnSortProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ColumnSortProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ColumnSortProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ColumnSortProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » ColumnSortProperty |
The sort configuration for a column that is not used in a field well.
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 columnSortProperty: quicksight_mixins.CfnDashboardPropsMixin.ColumnSortProperty = {
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aggregation | IResolvable | Aggregation | The aggregation function that is defined in the column sort. |
| direction? | string | The sort direction. |
| sort | IResolvable | Column |
aggregationFunction?
Type:
IResolvable | Aggregation
(optional)
The aggregation function that is defined in the column sort.
direction?
Type:
string
(optional)
The sort direction.
sortBy?
Type:
IResolvable | Column
(optional)

.NET
Go
Java
Python
TypeScript