Module Values_0.PropagatingAttributeSource

An object that represents the connection attribute, thing attribute, and the user property key.

Sourcetype nonrec t = {
  1. userPropertyKey : UserPropertyKeyName.t option;
    (*

    The key of the user property key-value pair.

    *)
  2. thingAttribute : AttributeName.t option;
    (*

    The user-defined thing attribute that is propagating for MQTT 5 message enrichment.

    *)
  3. connectionAttribute : ConnectionAttributeName.t option;
    (*

    The attribute associated with the connection between a device and Amazon Web Services IoT Core.

    *)
}
Sourceval make : ?userPropertyKey:??? -> ?thingAttribute:??? -> ?connectionAttribute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserPropertyKeyName.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