Interface CfnDataSet.PivotedLabelProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.PivotedLabelProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.PivotedLabelProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a label value to be pivoted into a separate column, including the new column name and identifier.
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.*;
PivotedLabelProperty pivotedLabelProperty = PivotedLabelProperty.builder()
.labelName("labelName")
.newColumnId("newColumnId")
.newColumnName("newColumnName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.PivotedLabelPropertystatic final classAn implementation forCfnDataSet.PivotedLabelProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The label value from the source data to be pivoted.A unique identifier for the new column created from this pivoted label.The name for the new column created from this pivoted label.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLabelName
The label value from the source data to be pivoted.- See Also:
-
getNewColumnId
A unique identifier for the new column created from this pivoted label.- See Also:
-
getNewColumnName
The name for the new column created from this pivoted label.- See Also:
-
builder
-