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: