Show / Hide Table of Contents

Interface CfnAnalysis.IHeatMapSortConfigurationProperty

The sort configuration of a heat map.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysis.IHeatMapSortConfigurationProperty
Syntax (vb)
Public Interface CfnAnalysis.IHeatMapSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-heatmapsortconfiguration.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.AWS.QuickSight;

             var heatMapSortConfigurationProperty = new HeatMapSortConfigurationProperty {
                 HeatMapColumnItemsLimitConfiguration = new ItemsLimitConfigurationProperty {
                     ItemsLimit = 123,
                     OtherCategories = "otherCategories"
                 },
                 HeatMapColumnSort = new [] { new FieldSortOptionsProperty {
                     ColumnSort = new ColumnSortProperty {
                         Direction = "direction",
                         SortBy = new ColumnIdentifierProperty {
                             ColumnName = "columnName",
                             DataSetIdentifier = "dataSetIdentifier"
                         },

                         // the properties below are optional
                         AggregationFunction = new AggregationFunctionProperty {
                             AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                                 SimpleAttributeAggregation = "simpleAttributeAggregation",
                                 ValueForMultipleValues = "valueForMultipleValues"
                             },
                             CategoricalAggregationFunction = "categoricalAggregationFunction",
                             DateAggregationFunction = "dateAggregationFunction",
                             NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                                 PercentileAggregation = new PercentileAggregationProperty {
                                     PercentileValue = 123
                                 },
                                 SimpleNumericalAggregation = "simpleNumericalAggregation"
                             }
                         }
                     },
                     FieldSort = new FieldSortProperty {
                         Direction = "direction",
                         FieldId = "fieldId"
                     }
                 } },
                 HeatMapRowItemsLimitConfiguration = new ItemsLimitConfigurationProperty {
                     ItemsLimit = 123,
                     OtherCategories = "otherCategories"
                 },
                 HeatMapRowSort = new [] { new FieldSortOptionsProperty {
                     ColumnSort = new ColumnSortProperty {
                         Direction = "direction",
                         SortBy = new ColumnIdentifierProperty {
                             ColumnName = "columnName",
                             DataSetIdentifier = "dataSetIdentifier"
                         },

                         // the properties below are optional
                         AggregationFunction = new AggregationFunctionProperty {
                             AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                                 SimpleAttributeAggregation = "simpleAttributeAggregation",
                                 ValueForMultipleValues = "valueForMultipleValues"
                             },
                             CategoricalAggregationFunction = "categoricalAggregationFunction",
                             DateAggregationFunction = "dateAggregationFunction",
                             NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                                 PercentileAggregation = new PercentileAggregationProperty {
                                     PercentileValue = 123
                                 },
                                 SimpleNumericalAggregation = "simpleNumericalAggregation"
                             }
                         }
                     },
                     FieldSort = new FieldSortProperty {
                         Direction = "direction",
                         FieldId = "fieldId"
                     }
                 } }
             };

Synopsis

Properties

HeatMapColumnItemsLimitConfiguration

The limit on the number of columns that are displayed in a heat map.

HeatMapColumnSort

The column sort configuration for heat map for columns that aren't a part of a field well.

HeatMapRowItemsLimitConfiguration

The limit on the number of rows that are displayed in a heat map.

HeatMapRowSort

The field sort configuration of the rows fields.

Properties

HeatMapColumnItemsLimitConfiguration

The limit on the number of columns that are displayed in a heat map.

object? HeatMapColumnItemsLimitConfiguration { get; }
Property Value

object

Remarks

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

HeatMapColumnSort

The column sort configuration for heat map for columns that aren't a part of a field well.

object? HeatMapColumnSort { get; }
Property Value

object

Remarks

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

HeatMapRowItemsLimitConfiguration

The limit on the number of rows that are displayed in a heat map.

object? HeatMapRowItemsLimitConfiguration { get; }
Property Value

object

Remarks

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

HeatMapRowSort

The field sort configuration of the rows fields.

object? HeatMapRowSort { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX