Interface CfnChannel.TopicConfigurationProperty

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

@Stability(Stable) public static interface CfnChannel.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.services.msk.*;
 TopicConfigurationProperty topicConfigurationProperty = TopicConfigurationProperty.builder()
         .recordConverter(RecordConverterProperty.builder()
                 .valueConverter("valueConverter")
                 .build())
         .topicArn("topicArn")
         // the properties below are optional
         .recordSchema(RecordSchemaProperty.builder()
                 .gsrArn("gsrArn")
                 .build())
         .build();
 

See Also: