Show / Hide Table of Contents

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html#cfn-msk-topic-clusterarn

Configs

Base64 encoded configuration properties of the topic.

string? Configs { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html#cfn-msk-topic-configs

PartitionCount

The number of partitions for the topic.

double PartitionCount { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html#cfn-msk-topic-partitioncount

ReplicationFactor

The replication factor for the topic.

double ReplicationFactor { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html#cfn-msk-topic-replicationfactor

TopicName

The name of the topic.

string TopicName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html#cfn-msk-topic-topicname

Back to top Generated by DocFX