AivenKafkaTopicReferenceOutput

interface AivenKafkaTopicReferenceOutput { id: string; project: string; serviceName: string; topicName: string; }

Resolved topic reference output.

Example

CODE
const topic: AivenKafkaTopicReferenceOutput = {
  id: 'platform/kafka-main/company.orders.v1',
  project: 'platform',
  serviceName: 'kafka-main',
  topicName: 'company.orders.v1',
};

Properties

id: string

Composite id in format <project>/<serviceName>/<topicName>.

project: string

Project name.

serviceName: string

Service name.

topicName: string

Topic name.