Show / Hide Table of Contents

Interface CfnAnalysisPropsMixin.ISankeyDiagramSortConfigurationProperty

The sort configuration of a sankey diagram.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.ISankeyDiagramSortConfigurationProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.ISankeyDiagramSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sankeydiagramsortconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;

             var sankeyDiagramSortConfigurationProperty = new SankeyDiagramSortConfigurationProperty {
                 DestinationItemsLimit = new ItemsLimitConfigurationProperty {
                     ItemsLimit = 123,
                     OtherCategories = "otherCategories"
                 },
                 SourceItemsLimit = new ItemsLimitConfigurationProperty {
                     ItemsLimit = 123,
                     OtherCategories = "otherCategories"
                 },
                 WeightSort = new [] { new FieldSortOptionsProperty {
                     ColumnSort = new ColumnSortProperty {
                         AggregationFunction = new AggregationFunctionProperty {
                             AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                                 SimpleAttributeAggregation = "simpleAttributeAggregation",
                                 ValueForMultipleValues = "valueForMultipleValues"
                             },
                             CategoricalAggregationFunction = "categoricalAggregationFunction",
                             DateAggregationFunction = "dateAggregationFunction",
                             NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                                 PercentileAggregation = new PercentileAggregationProperty {
                                     PercentileValue = 123
                                 },
                                 SimpleNumericalAggregation = "simpleNumericalAggregation"
                             }
                         },
                         Direction = "direction",
                         SortBy = new ColumnIdentifierProperty {
                             ColumnName = "columnName",
                             DataSetIdentifier = "dataSetIdentifier"
                         }
                     },
                     FieldSort = new FieldSortProperty {
                         Direction = "direction",
                         FieldId = "fieldId"
                     }
                 } }
             };

Synopsis

Properties

DestinationItemsLimit

The limit on the number of destination nodes that are displayed in a sankey diagram.

SourceItemsLimit

The limit on the number of source nodes that are displayed in a sankey diagram.

WeightSort

The sort configuration of the weight fields.

Properties

DestinationItemsLimit

The limit on the number of destination nodes that are displayed in a sankey diagram.

object? DestinationItemsLimit { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sankeydiagramsortconfiguration.html#cfn-quicksight-analysis-sankeydiagramsortconfiguration-destinationitemslimit

Type union: either IResolvable or CfnAnalysisPropsMixin.IItemsLimitConfigurationProperty

SourceItemsLimit

The limit on the number of source nodes that are displayed in a sankey diagram.

object? SourceItemsLimit { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sankeydiagramsortconfiguration.html#cfn-quicksight-analysis-sankeydiagramsortconfiguration-sourceitemslimit

Type union: either IResolvable or CfnAnalysisPropsMixin.IItemsLimitConfigurationProperty

WeightSort

The sort configuration of the weight fields.

object? WeightSort { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sankeydiagramsortconfiguration.html#cfn-quicksight-analysis-sankeydiagramsortconfiguration-weightsort

Type union: either IResolvable or (either IResolvable or CfnAnalysisPropsMixin.IFieldSortOptionsProperty)[]

Back to top Generated by DocFX