Show / Hide Table of Contents

Class CfnTemplate.TreeMapSortConfigurationProperty

The sort configuration of a tree map.

Inheritance
object
CfnTemplate.TreeMapSortConfigurationProperty
Implements
CfnTemplate.ITreeMapSortConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.TreeMapSortConfigurationProperty : CfnTemplate.ITreeMapSortConfigurationProperty
Syntax (vb)
Public Class CfnTemplate.TreeMapSortConfigurationProperty Implements CfnTemplate.ITreeMapSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-treemapsortconfiguration.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 treeMapSortConfigurationProperty = new TreeMapSortConfigurationProperty {
                 TreeMapGroupItemsLimitConfiguration = new ItemsLimitConfigurationProperty {
                     ItemsLimit = 123,
                     OtherCategories = "otherCategories"
                 },
                 TreeMapSort = 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

Constructors

TreeMapSortConfigurationProperty()

The sort configuration of a tree map.

Properties

TreeMapGroupItemsLimitConfiguration

The limit on the number of groups that are displayed.

TreeMapSort

The sort configuration of group by fields.

Constructors

TreeMapSortConfigurationProperty()

The sort configuration of a tree map.

public TreeMapSortConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-treemapsortconfiguration.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 treeMapSortConfigurationProperty = new TreeMapSortConfigurationProperty {
                 TreeMapGroupItemsLimitConfiguration = new ItemsLimitConfigurationProperty {
                     ItemsLimit = 123,
                     OtherCategories = "otherCategories"
                 },
                 TreeMapSort = 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"
                     }
                 } }
             };

Properties

TreeMapGroupItemsLimitConfiguration

The limit on the number of groups that are displayed.

public object? TreeMapGroupItemsLimitConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-treemapsortconfiguration.html#cfn-quicksight-template-treemapsortconfiguration-treemapgroupitemslimitconfiguration

Type union: either IResolvable or CfnTemplate.IItemsLimitConfigurationProperty

TreeMapSort

The sort configuration of group by fields.

public object? TreeMapSort { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-treemapsortconfiguration.html#cfn-quicksight-template-treemapsortconfiguration-treemapsort

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

Implements

CfnTemplate.ITreeMapSortConfigurationProperty
Back to top Generated by DocFX