Interface CfnAnalysis.IPivotTableSortByProperty
The sort by field for the field sort options.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPivotTableSortByProperty
Syntax (vb)
Public Interface IPivotTableSortByProperty
Remarks
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 {
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
Properties
Column | The column sort (field id, direction) for the pivot table sort by options. |
Data |
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. |
Properties
Column
The column sort (field id, direction) for the pivot table sort by options.
virtual object Column { get; }
Property Value
System.
Remarks
DataPath
The data path sort (data path value, direction) for the pivot table sort by options.
virtual object DataPath { get; }
Property Value
System.
Remarks
Field
The field sort (field id, direction) for the pivot table sort by options.
virtual object Field { get; }
Property Value
System.