interface InputColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.InputColumnProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.InputColumnProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.InputColumnProperty |
TypeScript | @aws-cdk/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 * as quicksight from '@aws-cdk/aws-quicksight';
const inputColumnProperty: quicksight.CfnDataSet.InputColumnProperty = {
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of this column in the underlying data source. |
| type | string | The 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.

.NET
Java
Python
TypeScript