AivenKafkaAclReferenceOutput

interface AivenKafkaAclReferenceOutput { aclId: string; id: string; permission: AivenKafkaAclPermission; project: string; serviceName: string; topic: string; username: string; }

Resolved ACL reference output.

Example

CODE
const acl: AivenKafkaAclReferenceOutput = {
  id: 'platform/kafka-main/read/company.orders.v1/consumer',
  aclId: 'acl-123',
  project: 'platform',
  serviceName: 'kafka-main',
  permission: 'read',
  topic: 'company.orders.v1',
  username: 'consumer',
};

Properties

aclId: string

Aiven ACL id.

id: string

Provider id of the ACL.

permission: AivenKafkaAclPermission

ACL permission.

project: string

Project name.

serviceName: string

Service name.

topic: string

ACL topic selector.

username: string

ACL username.