interface AppendOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.AppendOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_AppendOperationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.AppendOperationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.AppendOperationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const appendOperationProperty: quicksight_mixins.CfnDataSetPropsMixin.AppendOperationProperty = {
alias: 'alias',
appendedColumns: [{
columnName: 'columnName',
newColumnId: 'newColumnId',
}],
firstSource: {
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
transformOperationId: 'transformOperationId',
},
secondSource: {
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
transformOperationId: 'transformOperationId',
},
};
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
(optional)
Alias for this operation.
appendedColumns?
Type:
IResolvable | (IResolvable | Appended)[]
(optional)
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