Interface CfnChannelPropsMixin.TopicConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannelPropsMixin.TopicConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnChannelPropsMixin

@Stability(Stable) public static interface CfnChannelPropsMixin.TopicConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.msk.*;
 TopicConfigurationProperty topicConfigurationProperty = TopicConfigurationProperty.builder()
         .recordConverter(RecordConverterProperty.builder()
                 .valueConverter("valueConverter")
                 .build())
         .recordSchema(RecordSchemaProperty.builder()
                 .gsrArn("gsrArn")
                 .build())
         .topicArn("topicArn")
         .build();
 

See Also: