Module Values.PropertyNotificationSource

Contains asset property value notification information. When the notification state is enabled, IoT SiteWise publishes property value updates to a unique MQTT topic. For more information, see Interacting with other services in the IoT SiteWise User Guide.

Sourcetype nonrec t = {
  1. topic : PropertyNotificationTopic.t option;
    (*

    The MQTT topic to which IoT SiteWise publishes property value update notifications.

    *)
  2. state : PropertyNotificationState.t option;
    (*

    The current notification state.

    *)
}
Sourceval make : ?topic:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PropertyNotificationTopic.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t