interface PivotedLabelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.PivotedLabelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_PivotedLabelProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.PivotedLabelProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.PivotedLabelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const pivotedLabelProperty: quicksight_mixins.CfnDataSetPropsMixin.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
(optional)
The label value from the source data to be pivoted.
newColumnId?
Type:
string
(optional)
A unique identifier for the new column created from this pivoted label.
newColumnName?
Type:
string
(optional)
The name for the new column created from this pivoted label.

.NET
Go
Java
Python
TypeScript