Show / Hide Table of Contents

Class CfnTemplate.FilledMapSortConfigurationProperty

The sort configuration of a FilledMapVisual .

Inheritance
System.Object
CfnTemplate.FilledMapSortConfigurationProperty
Implements
CfnTemplate.IFilledMapSortConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class FilledMapSortConfigurationProperty : Object, CfnTemplate.IFilledMapSortConfigurationProperty
Syntax (vb)
Public Class FilledMapSortConfigurationProperty
    Inherits Object
    Implements CfnTemplate.IFilledMapSortConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filledmapsortconfiguration.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 filledMapSortConfigurationProperty = new FilledMapSortConfigurationProperty {
    CategorySort = new [] { new FieldSortOptionsProperty {
        ColumnSort = new ColumnSortProperty {
            Direction = "direction",
            SortBy = new ColumnIdentifierProperty {
                ColumnName = "columnName",
                DataSetIdentifier = "dataSetIdentifier"
            },

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

Synopsis

Constructors

FilledMapSortConfigurationProperty()

Properties

CategorySort

The sort configuration of the location fields.

Constructors

FilledMapSortConfigurationProperty()

public FilledMapSortConfigurationProperty()

Properties

CategorySort

The sort configuration of the location fields.

public object CategorySort { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filledmapsortconfiguration.html#cfn-quicksight-template-filledmapsortconfiguration-categorysort

Implements

CfnTemplate.IFilledMapSortConfigurationProperty
Back to top Generated by DocFX