interface OutputColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.OutputColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_OutputColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.OutputColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.OutputColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » OutputColumnProperty |
Output column.
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 outputColumnProperty: quicksight.CfnDataSetPropsMixin.OutputColumnProperty = {
description: 'description',
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for a column. |
| id? | string | A unique identifier for the output column. |
| name? | string | The display name of the column.. |
| sub | string | The sub data type of the column. |
| type? | string | The data type of the column. |
description?
Type:
string
(optional)
A description for a column.
id?
Type:
string
(optional)
A unique identifier for the output column.
name?
Type:
string
(optional)
The display name of the column..
subType?
Type:
string
(optional)
The sub data type of the column.
type?
Type:
string
(optional)
The data type of the column.

.NET
Go
Java
Python
TypeScript