Show / Hide Table of Contents

Class CfnAnalysis.PivotTableSortByProperty

The sort by field for the field sort options.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pivottablesortby.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 pivotTableSortByProperty = new PivotTableSortByProperty {
    Column = 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"
            }
        }
    },
    DataPath = new DataPathSortProperty {
        Direction = "direction",
        SortPaths = new [] { new DataPathValueProperty {
            FieldId = "fieldId",
            FieldValue = "fieldValue"
        } }
    },
    Field = new FieldSortProperty {
        Direction = "direction",
        FieldId = "fieldId"
    }
};

Synopsis

Constructors

PivotTableSortByProperty()

Properties

Column

The column sort (field id, direction) for the pivot table sort by options.

DataPath

The data path sort (data path value, direction) for the pivot table sort by options.

Field

The field sort (field id, direction) for the pivot table sort by options.

Constructors

PivotTableSortByProperty()

public PivotTableSortByProperty()

Properties

Column

The column sort (field id, direction) for the pivot table sort by options.

public object Column { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pivottablesortby.html#cfn-quicksight-analysis-pivottablesortby-column

DataPath

The data path sort (data path value, direction) for the pivot table sort by options.

public object DataPath { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pivottablesortby.html#cfn-quicksight-analysis-pivottablesortby-datapath

Field

The field sort (field id, direction) for the pivot table sort by options.

public object Field { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pivottablesortby.html#cfn-quicksight-analysis-pivottablesortby-field

Implements

CfnAnalysis.IPivotTableSortByProperty
Back to top Generated by DocFX