Module Values.DeviceProfileSource

Describes a device profile.

Sourcetype nonrec t = {
  1. arn : DeviceProfileArn.t option;
    (*

    The Amazon Resource Name of the resource.

    *)
  2. name : DeviceProfileName.t option;
    (*

    The name of the resource.

    *)
  3. id : DeviceProfileId.t option;
    (*

    The ID of the device profile.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeviceProfileArn.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