interface PartitionSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.PartitionSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_PartitionSpecProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.PartitionSpecProperty |
Python | aws_cdk.aws_msk.CfnChannel.PartitionSpecProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » PartitionSpecProperty |
Partition specification.
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 partitionSpecProperty: msk.CfnChannel.PartitionSpecProperty = {
partitionStrategy: 'partitionStrategy',
// the properties below are optional
sourceList: [{
sourceName: 'sourceName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| partition | string | Partition strategy for MSK channel. |
| source | IResolvable | (IResolvable | Partition)[] | Source list. |
partitionStrategy
Type:
string
Partition strategy for MSK channel.
sourceList?
Type:
IResolvable | (IResolvable | Partition)[]
(optional)
Source list.

.NET
Go
Java
Python
TypeScript