Interface CfnAnalysis.DataPathSortProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.DataPathSortProperty.Jsii$Proxy
- Enclosing class:
- CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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()
.fieldId("fieldId")
.fieldValue("fieldValue")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.DataPathSortPropertystatic final classAn implementation forCfnAnalysis.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. -
getSortPaths
The list of data paths that need to be sorted. -
builder
-