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