Interface IPasswordAuthenticator

IPasswordAuthenticator specifies an authenticator which uses an RBAC username and password to authenticate with the cluster.

interface IPasswordAuthenticator {
    allowed_sasl_mechanisms?: string[];
    password: string;
    username: string;
}

Implemented by

Properties

allowed_sasl_mechanisms?: string[]

The sasl mechanisms to authenticate with.

password: string

The password to autehnticate with.

username: string

The username to authenticate with.