interface InputColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.InputColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_InputColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.InputColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.InputColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const inputColumnProperty: quicksight.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