interface AppendedColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.AppendedColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_AppendedColumnProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.AppendedColumnProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.AppendedColumnProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const appendedColumnProperty: quicksight.CfnDataSet.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
The name of the column to include in the appended result.
newColumnId
Type:
string
A unique identifier for the column in the appended result.

.NET
Go
Java
Python
TypeScript