interface TopicConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.TopicConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_TopicConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.TopicConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.TopicConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » 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/cfn-property-mixins';
const topicConfigurationProperty: msk.CfnChannelPropsMixin.TopicConfigurationProperty = {
recordConverter: {
valueConverter: 'valueConverter',
},
recordSchema: {
gsrArn: 'gsrArn',
},
topicArn: 'topicArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| record | IResolvable | Record | Record converter configuration for a topic. |
| record | IResolvable | Record | Record schema configuration for a topic. |
| topic | string | The Amazon Resource Name (ARN) that uniquely identifies the topic. |
recordConverter?
Type:
IResolvable | Record
(optional)
Record converter configuration for a topic.
recordSchema?
Type:
IResolvable | Record
(optional)
Record schema configuration for a topic.
topicArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that uniquely identifies the topic.

.NET
Go
Java
Python
TypeScript