Module Values.PositionConfigurationItemSource

The wrapper for a position configuration.

Sourcetype nonrec t = {
  1. resourceIdentifier : PositionResourceIdentifier.t option;
    (*

    Resource identifier for the position configuration.

    *)
  2. resourceType : PositionResourceType.t option;
    (*

    Resource type of the resource for the position configuration.

    *)
  3. solvers : PositionSolverDetails.t option;
    (*

    The details of the positioning solver object used to compute the location.

    *)
  4. destination : DestinationName.t option;
    (*

    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 : ?resourceIdentifier:??? -> ?resourceType:??? -> ?solvers:??? -> ?destination:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PositionResourceIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) list ]) 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