interface CfnTopicMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnTopicMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnTopicMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnTopicMixinProps |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnTopicMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const cfnTopicMixinProps: msk_mixins.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