BrokerUser

data class BrokerUser(val consoleAccess: Boolean? = null, val groups: List<String>? = null, val password: String, val username: String)

Constructors

Link copied to clipboard
constructor(consoleAccess: Boolean? = null, groups: List<String>? = null, password: String, username: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val consoleAccess: Boolean? = null

Whether to enable access to the ActiveMQ Web Console for the user. Applies to engine_type of ActiveMQ only.

Link copied to clipboard
val groups: List<String>? = null

List of groups (20 maximum) to which the ActiveMQ user belongs. Applies to engine_type of ActiveMQ only.

Link copied to clipboard

Password of the user. It must be 12 to 250 characters long, at least 4 unique characters, and must not contain commas.

Link copied to clipboard

Username of the user.