Show / Hide Table of Contents

Class CfnAnalysis.PivotTableSortConfigurationProperty

The sort configuration for a PivotTableVisual .

Inheritance
object
CfnAnalysis.PivotTableSortConfigurationProperty
Implements
CfnAnalysis.IPivotTableSortConfigurationProperty
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 CfnAnalysis.PivotTableSortConfigurationProperty : CfnAnalysis.IPivotTableSortConfigurationProperty
Syntax (vb)
Public Class CfnAnalysis.PivotTableSortConfigurationProperty Implements CfnAnalysis.IPivotTableSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pivottablesortconfiguration.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 pivotTableSortConfigurationProperty = new PivotTableSortConfigurationProperty {
                 FieldSortOptions = new [] { new PivotFieldSortOptionsProperty {
                     FieldId = "fieldId",
                     SortBy = new PivotTableSortByProperty {
                         Column = 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"
                                 }
                             }
                         },
                         DataPath = new DataPathSortProperty {
                             Direction = "direction",
                             SortPaths = new [] { new DataPathValueProperty {
                                 DataPathType = new DataPathTypeProperty {
                                     PivotTableDataPathType = "pivotTableDataPathType"
                                 },
                                 FieldId = "fieldId",
                                 FieldValue = "fieldValue"
                             } }
                         },
                         Field = new FieldSortProperty {
                             Direction = "direction",
                             FieldId = "fieldId"
                         }
                     }
                 } }
             };

Synopsis

Constructors

PivotTableSortConfigurationProperty()

The sort configuration for a PivotTableVisual .

Properties

FieldSortOptions

The field sort options for a pivot table sort configuration.

Constructors

PivotTableSortConfigurationProperty()

The sort configuration for a PivotTableVisual .

public PivotTableSortConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pivottablesortconfiguration.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 pivotTableSortConfigurationProperty = new PivotTableSortConfigurationProperty {
                 FieldSortOptions = new [] { new PivotFieldSortOptionsProperty {
                     FieldId = "fieldId",
                     SortBy = new PivotTableSortByProperty {
                         Column = 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"
                                 }
                             }
                         },
                         DataPath = new DataPathSortProperty {
                             Direction = "direction",
                             SortPaths = new [] { new DataPathValueProperty {
                                 DataPathType = new DataPathTypeProperty {
                                     PivotTableDataPathType = "pivotTableDataPathType"
                                 },
                                 FieldId = "fieldId",
                                 FieldValue = "fieldValue"
                             } }
                         },
                         Field = new FieldSortProperty {
                             Direction = "direction",
                             FieldId = "fieldId"
                         }
                     }
                 } }
             };

Properties

FieldSortOptions

The field sort options for a pivot table sort configuration.

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

object

Remarks

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

Implements

CfnAnalysis.IPivotTableSortConfigurationProperty
Back to top Generated by DocFX