interface DestinationTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DestinationTableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DestinationTableProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DestinationTableProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DestinationTableProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DestinationTableProperty |
Defines a destination table in data preparation that receives the final transformed data.
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 destinationTableProperty: quicksight.CfnDataSet.DestinationTableProperty = {
alias: 'alias',
source: {
transformOperationId: 'transformOperationId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias | string | Alias for the destination table. |
| source | IResolvable | Destination | The source configuration that specifies which transform operation provides data to this destination table. |
alias
Type:
string
Alias for the destination table.
source
Type:
IResolvable | Destination
The source configuration that specifies which transform operation provides data to this destination table.

.NET
Go
Java
Python
TypeScript