interface PivotedLabelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.PivotedLabelProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_PivotedLabelProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.PivotedLabelProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.PivotedLabelProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » PivotedLabelProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const pivotedLabelProperty: quicksight.CfnDataSet.PivotedLabelProperty = {
labelName: 'labelName',
newColumnId: 'newColumnId',
newColumnName: 'newColumnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The label value from the source data to be pivoted. |
| new | string | A unique identifier for the new column created from this pivoted label. |
| new | string | The name for the new column created from this pivoted label. |
labelName
Type:
string
The label value from the source data to be pivoted.
newColumnId
Type:
string
A unique identifier for the new column created from this pivoted label.
newColumnName
Type:
string
The name for the new column created from this pivoted label.

.NET
Go
Java
Python
TypeScript