aws-cdk-lib.aws_quicksight.CfnAnalysis.BoxPlotSortConfigurationProperty

interface BoxPlotSortConfigurationProperty

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

The sort configuration of a BoxPlotVisual .

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 boxPlotSortConfigurationProperty: quicksight.CfnAnalysis.BoxPlotSortConfigurationProperty = {
  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',
    },
  }],
  paginationConfiguration: {
    pageNumber: 123,
    pageSize: 123,
  },
};

Properties

NameTypeDescription
categorySort?IResolvable | IResolvable | FieldSortOptionsProperty[]The sort configuration of a group by fields.
paginationConfiguration?IResolvable | PaginationConfigurationPropertyThe pagination configuration of a table visual or box plot.

categorySort?

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

The sort configuration of a group by fields.


paginationConfiguration?

Type: IResolvable | PaginationConfigurationProperty (optional)

The pagination configuration of a table visual or box plot.