interface HeatMapSortConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.HeatMapSortConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.HeatMapSortConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.HeatMapSortConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnAnalysis » HeatMapSortConfigurationProperty | 
The sort configuration of a heat map.
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 heatMapSortConfigurationProperty: quicksight.CfnAnalysis.HeatMapSortConfigurationProperty = {
  heatMapColumnItemsLimitConfiguration: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  heatMapColumnSort: [{
    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',
    },
  }],
  heatMapRowItemsLimitConfiguration: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  heatMapRowSort: [{
    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',
    },
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| heat | IResolvable | Items | The limit on the number of columns that are displayed in a heat map. | 
| heat | IResolvable | IResolvable | Field[] | The column sort configuration for heat map for columns that aren't a part of a field well. | 
| heat | IResolvable | Items | The limit on the number of rows that are displayed in a heat map. | 
| heat | IResolvable | IResolvable | Field[] | The field sort configuration of the rows fields. | 
heatMapColumnItemsLimitConfiguration?
Type:
IResolvable | Items
(optional)
The limit on the number of columns that are displayed in a heat map.
heatMapColumnSort?
Type:
IResolvable | IResolvable | Field[]
(optional)
The column sort configuration for heat map for columns that aren't a part of a field well.
heatMapRowItemsLimitConfiguration?
Type:
IResolvable | Items
(optional)
The limit on the number of rows that are displayed in a heat map.
heatMapRowSort?
Type:
IResolvable | IResolvable | Field[]
(optional)
The field sort configuration of the rows fields.

 .NET
 Java
 Python
 TypeScript