Interface CfnTemplate.DataPathSortProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DataPathSortProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.DataPathSortPropertystatic final classAn implementation forCfnTemplate.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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplate.DataPathValueProperty>- See Also:
-
builder
-