interface TransposedTableOptionProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.TransposedTableOptionProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_TransposedTableOptionProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.TransposedTableOptionProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.TransposedTableOptionProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const transposedTableOptionProperty: quicksight.CfnDashboard.TransposedTableOptionProperty = {
  columnType: 'columnType',
  // the properties below are optional
  columnIndex: 123,
  columnWidth: 'columnWidth',
};
Properties
| Name | Type | Description | 
|---|---|---|
| column | string | The column type of the column in a transposed table. Choose one of the following options:. | 
| column | number | The index of a columns in a transposed table. | 
| column | string | The width of a column in a transposed table. | 
columnType
Type:
string
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.
columnIndex?
Type:
number
(optional)
The index of a columns in a transposed table.
The index range is 0-9999.
columnWidth?
Type:
string
(optional)
The width of a column in a transposed table.
