interface InputColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.InputColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_InputColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.InputColumnProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.InputColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const inputColumnProperty: quicksight_mixins.CfnDataSetPropsMixin.InputColumnProperty = {
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | A unique identifier for the input column. |
| name? | string | The name of this column in the underlying data source. |
| sub | string | The sub data type of the column. |
| type? | string | The data type of the column. |
id?
Type:
string
(optional)
A unique identifier for the input column.
name?
Type:
string
(optional)
The name of this column in the underlying data source.
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.
type?
Type:
string
(optional)
The data type of the column.

.NET
Go
Java
Python
TypeScript