Interface CfnDashboard.DataPathSortProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DataPathSortProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DataPathSortProperty
extends software.amazon.jsii.JsiiSerializable
Allows data paths to be sorted by a specific data value.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; DataPathSortProperty dataPathSortProperty = DataPathSortProperty.builder() .direction("direction") .sortPaths(List.of(DataPathValueProperty.builder() .dataPathType(DataPathTypeProperty.builder() .pivotTableDataPathType("pivotTableDataPathType") .build()) .fieldId("fieldId") .fieldValue("fieldValue") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.DataPathSortProperty
static final class
An implementation forCfnDashboard.DataPathSortProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Determines the sort direction.The list of data paths that need to be sorted.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDirection
Determines the sort direction.- See Also:
-
getSortPaths
The list of data paths that need to be sorted.- See Also:
-
builder
-