interface AppendedColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.AppendedColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_AppendedColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.AppendedColumnProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.AppendedColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » AppendedColumnProperty |
Represents a column that will be included in the result of an append operation, combining data from multiple sources.
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 appendedColumnProperty: quicksight_mixins.CfnDataSetPropsMixin.AppendedColumnProperty = {
columnName: 'columnName',
newColumnId: 'newColumnId',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of the column to include in the appended result. |
| new | string | A unique identifier for the column in the appended result. |
columnName?
Type:
string
(optional)
The name of the column to include in the appended result.
newColumnId?
Type:
string
(optional)
A unique identifier for the column in the appended result.

.NET
Go
Java
Python
TypeScript