Interface CfnDataSetPropsMixin.PivotedLabelProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.PivotedLabelProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.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 forCfnDataSetPropsMixin.PivotedLabelPropertystatic final classAn implementation forCfnDataSetPropsMixin.PivotedLabelProperty -
Method Summary
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
-