Module Values.ApplicationConfigSource

LoRaWAN application configuration, which can be used to perform geolocation.

Sourcetype nonrec t = {
  1. fPort : FPort.t option;
  2. type_ : ApplicationConfigType.t option;
    (*

    Application type, which can be specified to obtain real-time position information of your LoRaWAN device.

    *)
  3. destinationName : DestinationName.t option;
    (*

    The name of the position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.

    *)
}
Sourceval make : ?fPort:??? -> ?type_:??? -> ?destinationName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of FPort.t | `String of DestinationName.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