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: