Module Values.CreateDeviceDefinitionVersionRequestSource

Creates a version of a device definition that has already been defined.

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

    A client token used to correlate requests and responses.

    *)
  2. deviceDefinitionId : string;
    (*

    The ID of the device definition.

    *)
  3. devices : Device.t list option;
    (*

    A list of devices in the definition version.

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