Module Values.CreateDeviceDefinitionRequestSource

Creates a device definition. You may provide the initial version of the device definition now or use ''CreateDeviceDefinitionVersion'' at a later time.

Sourcetype nonrec t = {
  1. amznClientToken : string option;
    (*

    A client token used to correlate requests and responses.

    *)
  2. initialVersion : DeviceDefinitionVersion.t option;
    (*

    Information about the initial version of the device definition.

    *)
  3. name : string option;
    (*

    The name of the device definition.

    *)
  4. tags : Tags.t option;
    (*

    Tag(s) to add to the new resource.

    *)
}
Sourceval make : ?amznClientToken:??? -> ?initialVersion:??? -> ?name:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of bool | `String of string ]) list ] 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