interface DeviceMessageFiltersRule {
    policy: DeviceMessageFiltersRulePolicy;
    topics?: string[];
}

Properties

Properties

If set to accept, all topics in the topics list will be allowed, with all other topics being denied. If set to reject, all topics in the topics list will be denied, with all other topics being allowed.

topics?: string[]

List of topics to accept or reject. It must be valid MQTT topics and up to 65535 characters.