Interface CfnTopicMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-02T12:05:28.091Z")
@Stability(Stable)
public interface CfnTopicMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTopicPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.msk.mixins.*;
CfnTopicMixinProps cfnTopicMixinProps = CfnTopicMixinProps.builder()
.clusterArn("clusterArn")
.configs("configs")
.partitionCount(123)
.replicationFactor(123)
.topicName("topicName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicMixinPropsstatic final classAn implementation forCfnTopicMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTopicMixinProps.Builderbuilder()default StringThe Amazon Resource Name (ARN) of the MSK cluster.default StringBase64 encoded configuration properties of the topic.default NumberThe number of partitions for the topic.default NumberThe replication factor for the topic.default StringThe name of the topic.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterArn
The Amazon Resource Name (ARN) of the MSK cluster.- See Also:
-
getConfigs
Base64 encoded configuration properties of the topic.- See Also:
-
getPartitionCount
The number of partitions for the topic.- See Also:
-
getReplicationFactor
The replication factor for the topic.- See Also:
-
getTopicName
The name of the topic.- See Also:
-
builder
- Returns:
- a
CfnTopicMixinProps.BuilderofCfnTopicMixinProps
-