Module Values.DeviceSummarySource

Includes information about the device.

Sourcetype nonrec t = {
  1. deviceArn : DeviceArn.t option;
    (*

    The ARN of the device.

    *)
  2. deviceName : String_.t option;
    (*

    The name of the device.

    *)
  3. providerName : String_.t option;
    (*

    The provider of the device.

    *)
  4. deviceType : DeviceType.t option;
    (*

    The type of the device.

    *)
  5. deviceStatus : DeviceStatus.t option;
    (*

    The status of the device.

    *)
}
Sourceval make : ?deviceArn:??? -> ?deviceName:??? -> ?providerName:??? -> ?deviceType:??? -> ?deviceStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DeviceArn.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