Show / Hide Table of Contents

Class CfnAnalysis.TableSortConfigurationProperty

The sort configuration for a TableVisual .

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablesortconfiguration.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 tableSortConfigurationProperty = new TableSortConfigurationProperty {
    PaginationConfiguration = new PaginationConfigurationProperty {
        PageNumber = 123,
        PageSize = 123
    },
    RowSort = 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

TableSortConfigurationProperty()

Properties

PaginationConfiguration

The pagination configuration (page size, page number) for the table.

RowSort

The field sort options for rows in the table.

Constructors

TableSortConfigurationProperty()

public TableSortConfigurationProperty()

Properties

PaginationConfiguration

The pagination configuration (page size, page number) for the table.

public object PaginationConfiguration { get; set; }
Property Value

System.Object

Remarks

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

RowSort

The field sort options for rows in the table.

public object RowSort { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnAnalysis.ITableSortConfigurationProperty
Back to top Generated by DocFX