BrokerResourceRuleResponse

data class BrokerResourceRuleResponse(val method: String, val topics: List<String>? = null)

Broker Resource Rule properties. This defines the objects that represent the actions or topics, such as - method.Connect, method.Publish, etc.

Constructors

Link copied to clipboard
constructor(method: String, topics: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Give access for a Broker method (i.e., Connect, Subscribe, or Publish).

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

A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.