Module Values.GetDeviceDefinitionVersionRequestSource

Retrieves information about a device definition version.

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

    The ID of the device definition.

    *)
  2. deviceDefinitionVersionId : string;
    (*

    The ID of the device definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListDeviceDefinitionVersions'' requests. If the version is the last one that was associated with a device definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.

    *)
  3. nextToken : string option;
    (*

    The token for the next set of results, or ''null'' if there are no additional results.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> deviceDefinitionId:string -> deviceDefinitionVersionId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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