Class CfnChannelPropsMixin.TopicConfigurationProperty
Configuration of topic in a channel.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MSK
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnChannelPropsMixin.TopicConfigurationProperty : CfnChannelPropsMixin.ITopicConfigurationProperty
Syntax (vb)
Public Class CfnChannelPropsMixin.TopicConfigurationProperty Implements CfnChannelPropsMixin.ITopicConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MSK;
var topicConfigurationProperty = new TopicConfigurationProperty {
RecordConverter = new RecordConverterProperty {
ValueConverter = "valueConverter"
},
RecordSchema = new RecordSchemaProperty {
GsrArn = "gsrArn"
},
TopicArn = "topicArn"
};
Synopsis
Constructors
| TopicConfigurationProperty() | Configuration of topic in a channel. |
Properties
| RecordConverter | Record converter configuration for a topic. |
| RecordSchema | Record schema configuration for a topic. |
| TopicArn | The Amazon Resource Name (ARN) that uniquely identifies the topic. |
Constructors
TopicConfigurationProperty()
Configuration of topic in a channel.
public TopicConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MSK;
var topicConfigurationProperty = new TopicConfigurationProperty {
RecordConverter = new RecordConverterProperty {
ValueConverter = "valueConverter"
},
RecordSchema = new RecordSchemaProperty {
GsrArn = "gsrArn"
},
TopicArn = "topicArn"
};
Properties
RecordConverter
Record converter configuration for a topic.
public object? RecordConverter { get; set; }
Property Value
Remarks
RecordSchema
Record schema configuration for a topic.
public object? RecordSchema { get; set; }
Property Value
Remarks
TopicArn
The Amazon Resource Name (ARN) that uniquely identifies the topic.
public string? TopicArn { get; set; }