Module Values_2.DeviceSummarySource

Summary of the device.

Sourcetype nonrec t = {
  1. deviceName : Values_0.EntityName.t option;
    (*

    The unique identifier of the device.

    *)
  2. deviceArn : Values_1.DeviceArn.t option;
    (*

    Amazon Resource Name (ARN) of the device.

    *)
  3. description : Values_1.DeviceDescription.t option;
    (*

    A description of the device.

    *)
  4. deviceFleetName : Values_0.EntityName.t option;
    (*

    The name of the fleet the device belongs to.

    *)
  5. iotThingName : Values_1.ThingName.t option;
    (*

    The Amazon Web Services Internet of Things (IoT) object thing name associated with the device..

    *)
  6. registrationTime : Values_0.Timestamp.t option;
    (*

    The timestamp of the last registration or de-reregistration.

    *)
  7. latestHeartbeat : Values_0.Timestamp.t option;
    (*

    The last heartbeat received from the device.

    *)
  8. models : EdgeModelSummaries.t option;
    (*

    Models on the device.

    *)
  9. agentVersion : Values_0.EdgeVersion.t option;
    (*

    Edge Manager agent version.

    *)
}
Sourceval make : ?deviceName:??? -> ?deviceArn:??? -> ?description:??? -> ?deviceFleetName:??? -> ?iotThingName:??? -> ?registrationTime:??? -> ?latestHeartbeat:??? -> ?models:??? -> ?agentVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Values_0.EntityName.t ]) list ] list | `String of Values_0.EntityName.t | `Timestamp of Values_0.Timestamp.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