interface CfnTopicMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnTopicMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnTopicMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnTopicMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnTopicMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnTopicMixinProps |
Properties for CfnTopicPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-topic.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const cfnTopicMixinProps: msk.CfnTopicMixinProps = {
clusterArn: 'clusterArn',
configs: 'configs',
partitionCount: 123,
replicationFactor: 123,
topicName: 'topicName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The Amazon Resource Name (ARN) of the MSK cluster. |
| configs? | string | Base64 encoded configuration properties of the topic. |
| partition | number | The number of partitions for the topic. |
| replication | number | The replication factor for the topic. |
| topic | string | The name of the topic. |
clusterArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the MSK cluster.
configs?
Type:
string
(optional)
Base64 encoded configuration properties of the topic.
partitionCount?
Type:
number
(optional)
The number of partitions for the topic.
replicationFactor?
Type:
number
(optional)
The replication factor for the topic.
topicName?
Type:
string
(optional)
The name of the topic.

.NET
Go
Java
Python
TypeScript