Interface CfnAnalysis.DataPathValueProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.DataPathValueProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.DataPathValueProperty extends software.amazon.jsii.JsiiSerializable
The data path that needs to be sorted.

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.*;
 DataPathValueProperty dataPathValueProperty = DataPathValueProperty.builder()
         .dataPathType(DataPathTypeProperty.builder()
                 .pivotTableDataPathType("pivotTableDataPathType")
                 .build())
         .fieldId("fieldId")
         .fieldValue("fieldValue")
         .build();
 

See Also: