interface AppendOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.AppendOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_AppendOperationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.AppendOperationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.AppendOperationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » AppendOperationProperty |
A transform operation that combines rows from two data sources by stacking them vertically (union 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-lib';
const appendOperationProperty: quicksight.CfnDataSet.AppendOperationProperty = {
alias: 'alias',
appendedColumns: [{
columnName: 'columnName',
newColumnId: 'newColumnId',
}],
// the properties below are optional
firstSource: {
transformOperationId: 'transformOperationId',
// the properties below are optional
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
},
secondSource: {
transformOperationId: 'transformOperationId',
// the properties below are optional
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias | string | Alias for this operation. |
| appended | IResolvable | (IResolvable | Appended)[] | The list of columns to include in the appended result, mapping columns from both sources. |
| first | IResolvable | Transform | The first data source to be included in the append operation. |
| second | IResolvable | Transform | The second data source to be appended to the first source. |
alias
Type:
string
Alias for this operation.
appendedColumns
Type:
IResolvable | (IResolvable | Appended)[]
The list of columns to include in the appended result, mapping columns from both sources.
firstSource?
Type:
IResolvable | Transform
(optional)
The first data source to be included in the append operation.
secondSource?
Type:
IResolvable | Transform
(optional)
The second data source to be appended to the first source.

.NET
Go
Java
Python
TypeScript