interface DestinationTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.DestinationTableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_DestinationTableProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.DestinationTableProperty |
Python | aws_cdk.aws_msk.CfnChannel.DestinationTableProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » DestinationTableProperty |
Destination table configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from 'aws-cdk-lib';
const destinationTableProperty: msk.CfnChannel.DestinationTableProperty = {
destinationDatabaseName: 'destinationDatabaseName',
destinationTableName: 'destinationTableName',
// the properties below are optional
partitionSpec: {
partitionStrategy: 'partitionStrategy',
// the properties below are optional
sourceList: [{
sourceName: 'sourceName',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination database name. |
| destination | string | The destination table name. |
| partition | IResolvable | Partition | Partition specification. |
destinationDatabaseName
Type:
string
The destination database name.
destinationTableName
Type:
string
The destination table name.
partitionSpec?
Type:
IResolvable | Partition
(optional)
Partition specification.

.NET
Go
Java
Python
TypeScript