interface PluginVisualTableQuerySortProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PluginVisualTableQuerySortProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PluginVisualTableQuerySortProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PluginVisualTableQuerySortProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PluginVisualTableQuerySortProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » PluginVisualTableQuerySortProperty |
The table query sorting options for the plugin visual.
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 pluginVisualTableQuerySortProperty: quicksight_mixins.CfnAnalysisPropsMixin.PluginVisualTableQuerySortProperty = {
itemsLimitConfiguration: {
itemsLimit: 123,
},
rowSort: [{
columnSort: {
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
},
fieldSort: {
direction: 'direction',
fieldId: 'fieldId',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| items | IResolvable | Plugin | The maximum amount of data to be returned by a query. |
| row | IResolvable | (IResolvable | Field)[] | Determines how data is sorted in the response. |
itemsLimitConfiguration?
Type:
IResolvable | Plugin
(optional)
The maximum amount of data to be returned by a query.
rowSort?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
Determines how data is sorted in the response.

.NET
Go
Java
Python
TypeScript