interface TopicConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.TopicConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_TopicConfigurationProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.TopicConfigurationProperty |
Python | aws_cdk.aws_msk.CfnChannel.TopicConfigurationProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » TopicConfigurationProperty |
Configuration of topic in a channel.
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 topicConfigurationProperty: msk.CfnChannel.TopicConfigurationProperty = {
recordConverter: {
valueConverter: 'valueConverter',
},
topicArn: 'topicArn',
// the properties below are optional
recordSchema: {
gsrArn: 'gsrArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| record | IResolvable | Record | Record converter configuration for a topic. |
| topic | string | The Amazon Resource Name (ARN) that uniquely identifies the topic. |
| record | IResolvable | Record | Record schema configuration for a topic. |
recordConverter
Type:
IResolvable | Record
Record converter configuration for a topic.
topicArn
Type:
string
The Amazon Resource Name (ARN) that uniquely identifies the topic.
recordSchema?
Type:
IResolvable | Record
(optional)
Record schema configuration for a topic.

.NET
Go
Java
Python
TypeScript