Interface CfnDataSet.PivotConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.PivotConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.PivotConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for a pivot operation, specifying which column contains labels and how to pivot them.
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.*;
PivotConfigurationProperty pivotConfigurationProperty = PivotConfigurationProperty.builder()
.pivotedLabels(List.of(PivotedLabelProperty.builder()
.labelName("labelName")
.newColumnId("newColumnId")
.newColumnName("newColumnName")
.build()))
// the properties below are optional
.labelColumnName("labelColumnName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.PivotConfigurationPropertystatic final classAn implementation forCfnDataSet.PivotConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPivotedLabels
The list of specific label values to pivot into separate columns.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.PivotedLabelProperty>- See Also:
-
getLabelColumnName
The name of the column that contains the labels to be pivoted into separate columns.- See Also:
-
builder
-