interface InputColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.InputColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_InputColumnProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.InputColumnProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.InputColumnProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » InputColumnProperty |
Metadata for a column that is used as the input of a transform operation.
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 inputColumnProperty: quicksight.CfnDataSet.InputColumnProperty = {
name: 'name',
type: 'type',
// the properties below are optional
id: 'id',
subType: 'subType',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of this column in the underlying data source. |
| type | string | The data type of the column. |
| id? | string | A unique identifier for the input column. |
| sub | string | The sub data type of the column. |
name
Type:
string
The name of this column in the underlying data source.
type
Type:
string
The data type of the column.
id?
Type:
string
(optional)
A unique identifier for the input column.
subType?
Type:
string
(optional)
The sub data type of the column.
Sub types are only available for decimal columns that are part of a SPICE dataset.

.NET
Go
Java
Python
TypeScript