Interface ICfnTopicProps
Properties for defining a CfnTopic.
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnTopicProps
Syntax (vb)
Public Interface ICfnTopicProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html
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.AWS.MSK;
var cfnTopicProps = new CfnTopicProps {
ClusterArn = "clusterArn",
PartitionCount = 123,
ReplicationFactor = 123,
TopicName = "topicName",
// the properties below are optional
Configs = "configs"
};
Synopsis
Properties
| ClusterArn | The Amazon Resource Name (ARN) of the MSK cluster. |
| Configs | Base64 encoded configuration properties of the topic. |
| PartitionCount | The number of partitions for the topic. |
| ReplicationFactor | The replication factor for the topic. |
| TopicName | The name of the topic. |
Properties
ClusterArn
The Amazon Resource Name (ARN) of the MSK cluster.
string ClusterArn { get; }
Property Value
Remarks
Configs
Base64 encoded configuration properties of the topic.
string? Configs { get; }
Property Value
Remarks
PartitionCount
The number of partitions for the topic.
double PartitionCount { get; }
Property Value
Remarks
ReplicationFactor
The replication factor for the topic.
double ReplicationFactor { get; }
Property Value
Remarks
TopicName
The name of the topic.
string TopicName { get; }