interface AppendOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.AppendOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_AppendOperationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.AppendOperationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.AppendOperationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const appendOperationProperty: quicksight.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