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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.TopicConfigurationPropertystatic final classAn implementation forCfnChannel.TopicConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRecordConverter
Record converter configuration for a topic.Returns union: either
IResolvableorCfnChannel.RecordConverterProperty- See Also:
-
getTopicArn
The Amazon Resource Name (ARN) that uniquely identifies the topic.- See Also:
-
getRecordSchema
Record schema configuration for a topic.Returns union: either
IResolvableorCfnChannel.RecordSchemaProperty- See Also:
-
builder
-