Class CfnAnalysis.DataPathSortProperty
Allows data paths to be sorted by a specific data value.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.DataPathSortProperty : CfnAnalysis.IDataPathSortProperty
Syntax (vb)
Public Class CfnAnalysis.DataPathSortProperty Implements CfnAnalysis.IDataPathSortProperty
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 dataPathSortProperty = new DataPathSortProperty {
Direction = "direction",
SortPaths = new [] { new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
} }
};
Synopsis
Constructors
DataPathSortProperty() | Allows data paths to be sorted by a specific data value. |
Properties
Direction | Determines the sort direction. |
SortPaths | The list of data paths that need to be sorted. |
Constructors
DataPathSortProperty()
Allows data paths to be sorted by a specific data value.
public DataPathSortProperty()
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 dataPathSortProperty = new DataPathSortProperty {
Direction = "direction",
SortPaths = new [] { new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
} }
};
Properties
Direction
Determines the sort direction.
public string Direction { get; set; }
Property Value
Remarks
SortPaths
The list of data paths that need to be sorted.
public object SortPaths { get; set; }