aws-cdk-lib.aws_quicksight.CfnTemplate.FilledMapSortConfigurationProperty

interface FilledMapSortConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.FilledMapSortConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_FilledMapSortConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.FilledMapSortConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.FilledMapSortConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » FilledMapSortConfigurationProperty

The sort configuration of a FilledMapVisual .

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 filledMapSortConfigurationProperty: quicksight.CfnTemplate.FilledMapSortConfigurationProperty = {
  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',
    },
  }],
};

Properties

NameTypeDescription
categorySort?IResolvable | IResolvable | FieldSortOptionsProperty[]The sort configuration of the location fields.

categorySort?

Type: IResolvable | IResolvable | FieldSortOptionsProperty[] (optional)

The sort configuration of the location fields.