interface DestinationTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.DestinationTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_DestinationTableProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.DestinationTableProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.DestinationTableProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » 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/cfn-property-mixins';
const destinationTableProperty: msk.CfnChannelPropsMixin.DestinationTableProperty = {
destinationDatabaseName: 'destinationDatabaseName',
destinationTableName: 'destinationTableName',
partitionSpec: {
partitionStrategy: 'partitionStrategy',
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
(optional)
The destination database name.
destinationTableName?
Type:
string
(optional)
The destination table name.
partitionSpec?
Type:
IResolvable | Partition
(optional)
Partition specification.

.NET
Go
Java
Python
TypeScript