Interface CfnTemplate.DataPathValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DataPathValueProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.DataPathValuePropertystatic final classAn implementation forCfnTemplate.DataPathValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataPathType
The type configuration of the field.Returns union: either
IResolvableorCfnTemplate.DataPathTypeProperty- See Also:
-
getFieldId
The field ID of the field that needs to be sorted.- See Also:
-
getFieldValue
The actual value of the field that needs to be sorted.- See Also:
-
builder
-