interface SankeyDiagramSortConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SankeyDiagramSortConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SankeyDiagramSortConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SankeyDiagramSortConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SankeyDiagramSortConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » SankeyDiagramSortConfigurationProperty |
The sort configuration of a sankey diagram.
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 sankeyDiagramSortConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.SankeyDiagramSortConfigurationProperty = {
destinationItemsLimit: {
itemsLimit: 123,
otherCategories: 'otherCategories',
},
sourceItemsLimit: {
itemsLimit: 123,
otherCategories: 'otherCategories',
},
weightSort: [{
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 |
|---|---|---|
| destination | IResolvable | Items | The limit on the number of destination nodes that are displayed in a sankey diagram. |
| source | IResolvable | Items | The limit on the number of source nodes that are displayed in a sankey diagram. |
| weight | IResolvable | (IResolvable | Field)[] | The sort configuration of the weight fields. |
destinationItemsLimit?
Type:
IResolvable | Items
(optional)
The limit on the number of destination nodes that are displayed in a sankey diagram.
sourceItemsLimit?
Type:
IResolvable | Items
(optional)
The limit on the number of source nodes that are displayed in a sankey diagram.
weightSort?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
The sort configuration of the weight fields.

.NET
Go
Java
Python
TypeScript