interface TransposedTableOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.TransposedTableOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_TransposedTableOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.TransposedTableOptionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.TransposedTableOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » TransposedTableOptionProperty |
The column option of the transposed table.
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 transposedTableOptionProperty: quicksight_mixins.CfnAnalysisPropsMixin.TransposedTableOptionProperty = {
columnIndex: 123,
columnType: 'columnType',
columnWidth: 'columnWidth',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | number | The index of a columns in a transposed table. |
| column | string | The column type of the column in a transposed table. Choose one of the following options:. |
| column | string | The width of a column in a transposed table. |
columnIndex?
Type:
number
(optional)
The index of a columns in a transposed table.
The index range is 0-9999.
columnType?
Type:
string
(optional)
The column type of the column in a transposed table. Choose one of the following options:.
ROW_HEADER_COLUMN: Refers to the leftmost column of the row header in the transposed table.VALUE_COLUMN: Refers to all value columns in the transposed table.
columnWidth?
Type:
string
(optional)
The width of a column in a transposed table.

.NET
Go
Java
Python
TypeScript